// Full Frame Navigation if(parent.frames.length)top.location=document.location; // Target Window Name = main this.window.name='main' // PDF Viewer Window function openViewPDF(newURL) { var yes = 1; var no = 0; var menubar = no; // The File, Edit, View Menus var scrollbars = yes; // Horizontal and vertical scrollbars var locationbar = no; // The location box with the site URL var directories = no; // the "What's New", "What Cool" links var resizable = yes; // Can the window be resized? var statusbar = yes; // Status bar (with "Document: Done") var toolbar = no; // Back, Forward, Home, Stop toolbar redirectwindowprops = "width=" + (700) + ",height=" + (400) + ",top=" + (((screen.height-400)/2)-30) +",left=" + (((screen.width-700)/2)-5) + ""; redirectwindowprops += (menubar ? ",menubars" : "") + (scrollbars ? ",scrollbars" : "") + (locationbar ? ",location" : "") + (directories ? ",directories" : "") + (resizable ? ",resizable" : "") + (statusbar ? ",status" : "") + (toolbar ? ",toolbar" : ""); window.open(newURL, 'fullPopupRedirect', redirectwindowprops); } // Project Viewer Window function openViewProject(newURL) { var yes = 1; var no = 0; var menubar = yes; // The File, Edit, View Menus var scrollbars = yes; // Horizontal and vertical scrollbars var locationbar = no; // The location box with the site URL var directories = no; // the "What's New", "What Cool" links var resizable = yes; // Can the window be resized? var statusbar = yes; // Status bar (with "Document: Done") var toolbar = yes; // Back, Forward, Home, Stop toolbar redirectwindowprops = "width=" + (700) + ",height=" + (400) + ",top=" + (((screen.height-400)/2)-30) +",left=" + (((screen.width-700)/2)-5) + ""; redirectwindowprops += (menubar ? ",menubars" : "") + (scrollbars ? ",scrollbars" : "") + (locationbar ? ",location" : "") + (directories ? ",directories" : "") + (resizable ? ",resizable" : "") + (statusbar ? ",status" : "") + (toolbar ? ",toolbar" : ""); window.open(newURL, 'fullPopupRedirect', redirectwindowprops); } // Mac Window function openMacWindow(newURL,winwidth,winheight) { var yes = 1; var no = 0; var menubar = no; // The File, Edit, View Menus var scrollbars = no; // Horizontal and vertical scrollbars var locationbar = no; // The location box with the site URL var directories = no; // the "What's New", "What Cool" links var resizable = yes; // Can the window be resized? var statusbar = yes; // Status bar (with "Document: Done") var toolbar = no; // Back, Forward, Home, Stop toolbar redirectwindowprops = "width=" + (winwidth) + ",height=" + (winheight) + ",top=" + (((screen.height-winheight)/2)-30) +",left=" + (((screen.width-winwidth)/2)-5) + ""; redirectwindowprops += (menubar ? ",menubars" : "") + (scrollbars ? ",scrollbars" : "") + (locationbar ? ",location" : "") + (directories ? ",directories" : "") + (resizable ? ",resizable" : "") + (statusbar ? ",status" : "") + (toolbar ? ",toolbar" : ""); window.open(newURL, 'fullPopupRedirect', redirectwindowprops); } // End -->