//============================================================================================================
// default popup function
function popUpWin(Newlocation,name,w,h,s,resizable)
{
	width=w;
	if(s==0)
		var scrollbars="yes";
	if(s==1)
		var scrollbars="no";
		popUpWindow=window.open(Newlocation,name,'toolbar=0,location=no,directories=0,status=0,menubar=0,scrollbars='+scrollbars+',resizable='+resizable+',width='+w+',height='+h);
	if (popUpWindow.opener==null) popUpWindow.opener=self;
	if (window.focus) popUpWindow.focus();
}
//============================================================================================================

function popUpProfessionalRegisterDemo( partnercode ) {
var additionalParameters = ( partnercode != '' ) ? '?partnercode=' + partnercode  : '';
	popUpWin('http://proweb.ttweb.net/pFree/userRegisterDemo.aspx' + additionalParameters , 'Request', 735, 660, 0, 'yes')
}

function popUpProfessionalRegister( partnercode ) {
	var additionalParameters = ( partnercode != '' ) ? '?partnercode=' + partnercode  : '';
	popUpWin('https://proweb.ttweb.net/pFree/userRegister.aspx' + additionalParameters, 'Request', 735, 660, 0, 'yes')
}

