// JavaScript Document

var settings;
function popUp(url,name,settings) {
//  'simple Link' window code
	if(name == "simple") {
		   	screenY = window.screen.availHeight*.85;
        	screenX = window.screen.availWidth*.85;
			topPos = (screenY*.07);
			leftPos = (screenX*.08);
			settings = "toolbar=no,location=no,status=no,menubar=no,scrollbars=yes,resizable=no,left="+leftPos+",top="+topPos+",width="+screenX+",height="+screenY+"";
    	} else {
    		if(name == "Feedback") {
				screenY = window.screen.availHeight*.54;
				screenX = window.screen.availWidth*.54;
				topPos = (screenY*.48);
				leftPos = (screenX*.41);
				settings = "toolbar=no,location=no,status=no,scrollbars=no,resizable=no,left="+leftPos+",top="+topPos+",width="+screenX+",height="+screenY+"";
			} else {
				if(name == "complex") {
				screenY = window.screen.availHeight*.79;
        		screenX = window.screen.availWidth*.85;
				topPos = (screenY*.01);
				leftPos = (screenX*.08);
				settings = "toolbar=yes,location=yes,status=yes,menubar=yes,scrollbars=yes,resizable=yes,left="+leftPos+",top="+topPos+",width="+screenX+",height="+screenY+"";
				} else {
					screenY = window.screen.availHeight*.79;
        			screenX = window.screen.availWidth*.85;
					topPos = (screenY*.01);
					leftPos = (screenX*.08);
					settings = "toolbar=yes,location=yes,status=yes,menubar=yes,scrollbars=yes,resizable=yes,left="+leftPos+",top="+topPos+",width="+screenX+",height="+screenY+"";
				}
			}
		}
	
	
	var NewWindow;
	NewWindow=window.open(url,name,settings);
//	NewWindow.focus();
}