function popupPrivacy(url){

window.open(url, "window_name", "width=508,height=700,scrollbars=yes");

} 

function popupForm(wUrl){
	var wObj;
	wWidth = 550;
	wHeight = 490;
	scWidthCenter = screen.availWidth / 2;
	scHeightCenter = screen.availHeight / 2;
//	wOption = "toolbar=no,location=no,directories=no,status=no,menubar=no,scrollbars=yes,resizable=no,width=" + wWidth + ",height=" + wHeight;
	wOption = "toolbar=no,location=no,directories=no,status=no,menubar=no,scrollbars=yes,resizable=no,width=" + wWidth + ",height=" + wHeight + ",left=" + (scWidthCenter - (wWidth / 2)) + ",top=" + (scHeightCenter - (wHeight / 2));
	wObj = window.open(wUrl,'form',wOption);
	wObj.focus();
}

function popupCampaign(wUrl){
	var wObj;
	wWidth = 700;
	wHeight = 490;
	scWidthCenter = screen.availWidth / 2;
	scHeightCenter = screen.availHeight / 2;
	wOption = "toolbar=no,location=no,directories=no,status=no,menubar=no,scrollbars=yes,resizable=no,width=" + wWidth + ",height=" + wHeight + ",left=" + (scWidthCenter - (wWidth / 2)) + ",top=" + (scHeightCenter - (wHeight / 2));
	wObj = window.open(wUrl,'campaign',wOption);
	wObj.focus();
}