//**** Script used for pop-ups ****//
var newwindow;
function popUp(strURL,strType,strWidth,strHeight) 
{
	var strOptions="";
	strOptions="scrollbars,resizable,width="+strWidth+",height="+strHeight;
		newwindow=window.open(strURL, strType, strOptions);
	if (window.focus) {newwindow.focus()}
}