Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- // Popup window
- window.open('http://www.quackit.com/common/link_builder.cfm','popUpWindow','height=500,width=400,left=100,top=100,resizable=yes,scrollbars=yes,toolbar=yes,menubar=no,location=no,directories=no, status=yes');
- // Popup window function
- function basicPopup(url) {
- popupWindow = window.open(url,'popUpWindow','height=500,width=500,left=100,top=100,resizable=yes,scrollbars=yes,toolbar=yes,menubar=no,location=no,directories=no, status=yes');
- }
- //positionedPopup(this.href,'myWindow','500','300','100','200','yes')
- var popupWindowpositioned = null;
- function positionedPopup(url,winName,w,h,t,l,scroll){
- settings =
- 'height='+h+',width='+w+',top='+t+',left='+l+',scrollbars='+scroll+',resizable'
- popupWindowpositioned = window.open(url,winName,settings)
- }
- //centeredPopup(this.href,'myWindow','500','300','yes');
- var popupWindowcentered = null;
- function centeredPopup(url,winName,w,h,scroll){
- LeftPosition = (screen.width) ? (screen.width-w)/2 : 0;
- TopPosition = (screen.height) ? (screen.height-h)/2 : 0;
- settings =
- 'height='+h+',width='+w+',top='+TopPosition+',left='+LeftPosition+',scrollbars='+scroll+',resizable'
- popupWindowcentered = window.open(url,winName,settings)
- }
Advertisement
Add Comment
Please, Sign In to add comment