
/*************************************************************************************************************
 FUNCTION:  launchRemote
 OUTPUT:	launches a remote browser popup window
 NOTE:		
**********************************************************************************************************/

var windowNum = 0
function launchRemote(strWinName, strPage, intWidth, intHeight) {
	var remote = null;
	remote = window.open(strPage, strWinName, 'menubar=no,toolbar=no,status=no,resizable=yes,scrollbars=no,height='+intHeight +',width=' +intWidth +',top=' + ((screen.height/2)-(intHeight/2)) + ',left=' + ((screen.width/2)-(intWidth/2)));
	}

function launchRemoteWithScroll(strWinName, strPage, intWidth, intHeight) {
	var remote = null;
	remote = window.open(strPage, strWinName, 'menubar=no,toolbar=no,status=yes,resizable=yes,scrollbars=yes,height='+intHeight +',width=' +intWidth +',top=' + ((screen.height/2)-(intHeight/2)) + ',left=' + ((screen.width/2)-(intWidth/2)));
	
	}
	
	
function launchRemoteWithStatus(strWinName, strPage, intWidth, intHeight) {
	var remote = null;
	remote = window.open(strPage, strWinName, 'menubar=no,toolbar=no,status=yes,resizable=no,scrollbars=no,height='+intHeight +',width=' +intWidth +',top=' + ((screen.height/2)-(intHeight/2)) + ',left=' + ((screen.width/2)-(intWidth/2)));
	
	}
	
