var winOnTop;
function newWindow(url, height, width) {
	nameW='feature'
	if (navigator.appVersion.indexOf('4') != -1) {
	// Vars for centering the new window on Version 4 Browsers
	//xTop = screen.width/4 - (width/4);
	//yTop = screen.height/4 - (height/4);
	winOnTop = window.open(url, nameW, 'height='+height+',width='+width+',scrollbars=1,resizable=1,menubar=0,toolbar=0,status=0,location=0,directories=0,left=0,top=0');
	winOnTop.focus();
	} 
	else {
	winOnTop = window.open(url, nameW, 'height='+height+',width='+width+',scrollbars=1,resizable=1,menubar=0,toolbar=0,status=0,location=0,directories=0,left=0,top=0');
	winOnTop.focus();
	}
}

var topWin;
function newWindowSHS(url, height, width) {
	nameW='SHS'
	if (navigator.appVersion.indexOf('4') != -1) {
	// Vars for centering the new window on Version 4 Browsers
	//xTop = screen.width/4 - (width/4);
	//yTop = screen.height/4 - (height/4);
	topWin = window.open(url, nameW, 'height='+height+',width='+width+',scrollbars=1,resizable=1,menubar=1,toolbar=1,status=1,location=1,directories=1,left=0,top=0');
	topWin.focus();
	} 
	else {
	topWin = window.open(url, nameW, 'height='+height+',width='+width+',scrollbars=1,resizable=1,menubar=1,toolbar=1,status=1,location=1,directories=1,left=0,top=0');
	topWin.focus();
	}
}