var win= null;

//Opens a popup window on the center on the center of the screen
function OpenNewWindow_Center(pUrl,pWidth,pHeight,pName){
	var winl = (screen.width-pWidth)/2;
	var wint = (screen.height-pHeight)/2;

	settings='height='+pHeight+',width='+pWidth+',top='+wint+',left='+winl+',scrollbars=yes,toolbar=no';

	win=window.open(pUrl,pName,settings)

	if(parseInt(navigator.appVersion) >= 4){
		win.window.focus();
	}
}


//Opens a new window on the screen (full screen view)
function OpenNewWindow_AllScreen(pUrl,pName){
	settings='height='+screen.height+',width='+screen.width+',top=0,left=0,scrollbars=yes,toolbar=no'

	win=window.open(pUrl,pName,settings)

	if(parseInt(navigator.appVersion) >= 4){
		win.window.focus();
	}
}