function MM_preloadImages() { //v3.0
  var d=document; if(d.images){ if(!d.MM_p) d.MM_p=new Array();
    var i,j=d.MM_p.length,a=MM_preloadImages.arguments; for(i=0; i<a.length; i++)
    if (a[i].indexOf("#")!=0){ d.MM_p[j]=new Image; d.MM_p[j++].src=a[i];}}
}

function MM_swapImgRestore() { //v3.0
  var i,x,a=document.MM_sr; for(i=0;a&&i<a.length&&(x=a[i])&&x.oSrc;i++) x.src=x.oSrc;
}

function MM_findObj(n, d) { //v4.01
  var p,i,x;  if(!d) d=document; if((p=n.indexOf("?"))>0&&parent.frames.length) {
    d=parent.frames[n.substring(p+1)].document; n=n.substring(0,p);}
  if(!(x=d[n])&&d.all) x=d.all[n]; for (i=0;!x&&i<d.forms.length;i++) x=d.forms[i][n];
  for(i=0;!x&&d.layers&&i<d.layers.length;i++) x=MM_findObj(n,d.layers[i].document);
  if(!x && d.getElementById) x=d.getElementById(n); return x;
}

function MM_swapImage() { //v3.0
  var i,j=0,x,a=MM_swapImage.arguments; document.MM_sr=new Array; for(i=0;i<(a.length-2);i+=3)
   if ((x=MM_findObj(a[i]))!=null){document.MM_sr[j++]=x; if(!x.oSrc) x.oSrc=x.src; x.src=a[i+2];}
}


// The remote launching code.

function makePrivacyPolicy() {
if (navigator.appName == "Microsoft Internet Explorer")
	// set browser size for IE
	remote = window.open("/privacy_policy.html", "display", "fullscreen=no,toolbar=no,status=yes,menubar=no,scrollbars=yes,resizable=yes,directories=no,location=no,width=550,height=510,left=0,top=0");
else
	if (navigator.appName == "Netscape")
	// set browser size for Netscape
	remote = window.open("/privacy_policy.html", "display", "fullscreen=no,toolbar=no,status=yes,menubar=no,scrollbars=yes,resizable=yes,directories=no,location=no,width=536,height=529,left=0,top=0");
	else
	// set a default screen size
	remote = window.open("/privacy_policy.html", "display", "fullscreen=no,toolbar=no,status=yes,menubar=no,scrollbars=yes,resizable=yes,directories=no,location=no,width=550,height=550,left=0,top=0");
}

function makeFAQ() {
if (navigator.appName == "Microsoft Internet Explorer")
	// set browser size for IE
	remote = window.open("../faq.html", "display", "fullscreen=no,toolbar=no,status=yes,menubar=no,scrollbars=yes,resizable=yes,directories=no,location=no,width=550,height=510,left=0,top=0");
else
	if (navigator.appName == "Netscape")
	// set browser size for Netscape
	remote = window.open("../faq.html", "display", "fullscreen=no,toolbar=no,status=yes,menubar=no,scrollbars=yes,resizable=yes,directories=no,location=no,width=536,height=529,left=0,top=0");
	else
	// set a default screen size
	remote = window.open("../faq.html", "display", "fullscreen=no,toolbar=no,status=yes,menubar=no,scrollbars=yes,resizable=yes,directories=no,location=no,width=550,height=550,left=0,top=0");
}


<!-- Script Provided By http://www.DesignerWiz.com -->
<!--
/********************************************************************
        Center-Size Window NN,IE v1.0 written By PV
        //Feel free to use it on any page as long as you leave all comments
//as they are. So others can learn. 
//Any questions, suggestions, email me at PaulV420@usa.net
I will outline the script that you need, plus if you need the resize even handler
that will reload page when the user tries to resize the page.Thus makes it non-resizable
(note make sure there will be no scroll bars. if there is the resize will be triggered
and the page will be in constant loop of resizing)
There are also scripts for hiding layerrs, you don't need those i will out line what you need 
with comments. Have fun with this one. Updates coming!!
This Script was written by Paul Varshavsky
********************************************************************/
//Start script
function Is() {
var agent = navigator.userAgent.toLowerCase();
this.major = parseInt(navigator.appVersion);
this.minor = parseFloat(navigator.appVersion);
this.ns = ((agent.indexOf('mozilla')!=-1) &&
((agent.indexOf('spoofer')==-1) && (agent.indexOf('compatible')== -1))); 
this.ns4 = (this.ns && (this.major >= 4));
this.ie = (agent.indexOf("msie") != -1);
this.ie4 = (this.ie && (this.major >= 4));
}

function  CenterResizeWindow () {
var is = new Is();
var w=910;   //set Width for window 
var h=720;   //set Height for window
if(is.ns4){             
window.outerWidth  = w; 
window.outerHeight = h; 
var Xcor = (screen.width-window.outerWidth)/2; 
var Ycor = (screen.height-window.outerHeight)/2
window.moveTo(Xcor, Ycor);
}
else if(is.ie4){         //if Internet Explorer 4
//i'm designing this page for no toolbars if you
//will use toolbars put this line in h+=10;
//IE toolbars are a bit smaller so some area will be covered
//that you see in NN if you add 10 pix that compensates
var Ycor=(screen.height-h)/2;
var Xcor=(screen.width-w)/2;
window.moveTo(Xcor, Ycor);window.resizeTo(w,h);
}
}
//-->
//end script this will resize and ceneter your script
//copy from script to /script and place it in head of your page
//Enjoy!! Paul V

