// JavaScript Document //

function popIt(page,width,height){
	var url = "pops/";
	var suf = ".html";
	var	locate = ""+url+""+page+""+suf+"";
	var	win = window.open(locate,"","width="+width+",height="+height+",left=250,top=200");
	win.focus();
}

function popItlg(page,width,height){
	var url = "pops/";
	var suf = ".html";
	var	locate = ""+url+""+page+""+suf+"";
	var	win = window.open(locate,"","width="+width+",height="+height+",left=80,top=200");
	win.focus();
}

function popBio(page,width,height){
	var url = "pops/";
	var suf = ".html";
	var	locate = ""+url+""+page+""+suf+"";
	var	win = window.open(locate,"","width="+width+",height="+height+",scrollbars=yes,left=250,top=150");
	win.focus();
}



function contactAlert(){
	alert('your message has been sent');
}


function loadSWF(swf){
	if(window.flashMain){

		window.document["flashMain"].SetVariable("_root.theSwf", swf);
		
	}
	if(document.flashMain){

		document.flashMain.SetVariable("_root.theSwf", swf);
		
	}

}