//JS Functions 
function NewWindow(targetPage, w, h){
	LeftPosition = (screen.width) ? (screen.width-w)/2 : 0;
	TopPosition = (screen.height) ? (screen.height-h)/2 : 0;
	settings= 'height='+h+',width='+w+',top='+TopPosition+',left='+LeftPosition+',status=yes,resizable=yes,scrollbars=yes';
	FMain= window.open(targetPage,'newWin',settings)
	FMain.focus();
}

function NewWindowNoRes(targetPage, w, h){
	LeftPosition = (screen.width) ? (screen.width-w)/2 : 0;
	TopPosition = (screen.height) ? (screen.height-h)/2 : 0;
	settings= 'height='+h+',width='+w+',top='+TopPosition+',left='+LeftPosition+',status=no,resizable=no,scrollbars=no';
	FMain= window.open(targetPage,'newWin',settings)
	FMain.focus();
}

// End Functions


