//this function pops up a window that will be centered in the middle of the screen
//the parameters are as follows...
//file=the swf or htm filename
//winName=the window name
//w=the window width
//h=window height
//title= the title of the html page
//bgColor is the background color of the page and the swf
//************************
function centerPopup(file,winName,w,h,title){
	
		//this is to pop open htm files
			popup=window.open(file,winName,'width='+w+',height='+h+',top='+findTop(h)+',left='+findLeft(w)+',scrollbars=yes');

	
	popup.focus();
}
//***********************
function findTop(h){
		return ((screen.height-(h+60))/2);	
}
//************************
function findLeft(w){
		return (screen.width-(w+10))/2	
}