function openVariablePopUpWindow(strURL,width,height){
	var wHnd = window.open(strURL,'three','width='+width+',height='+height+',scrollbars=yes,left=0,top=0,screenX=0,screenY=0,resizable=yes');
    wHnd.name = 'UBSWgrPopup';
	wHnd.focus();
}

function popupWindow(strURL,width,height){
	var options="directories=no,location=no,menubar=no,scrollbars=no,status=yes,toolbar=no,resizable=no,fullscreen=false,alwayslowered=true";
	var wHnd = window.open(strURL,'one','width='+width+',height='+height + "," + options);
    wHnd.name = 'UBSWgrPopup';
}

function extLink(strURL){
	var options = "directories=no,location=yes,menubar=yes,scrollbars=yes,status=yes,toolbar=yes,resizable=yes,fullscreen=false,alwayslowered=true,height=600,width=800";
	var win2 = window.open(strURL,'two',options );
}

function openPopUpWindow(strURL){
	var options = "directories=no,location=yes,menubar=yes,scrollbars=yes,status=yes,toolbar=yes,resizable=yes,fullscreen=false,alwayslowered=true,height=600,width=600";
	var win2 = window.open(strURL,'two',options );
}


function openProfileWindow(strURL) {
	var strWinProperties;
	strWinProperties		= "width=575,height=500,scrollbars=yes,left=0,top=0,screenX=0,screenY=0";
	var wHnd				= window.open(strURL, "_blank", strWinProperties);
    wHnd.name = 'UBSWgrPopup';
	wHnd.focus();
}

