// vim: set tabstop=4 shiftwidth=4 foldmethod=marker :
/**
 * Previously these functions were in template.js
 * @depends basic.js.
 */
// {{{ showPrivacy(host)
function showPrivacy(host)
{
	popup((host?host:'')+'/support/privacy_statement','privacy_statement_non_members','540','635');
	return false;
}
// }}}
// {{{ showPrivacyNonMembers(host)
function showPrivacyNonMembers(host) {
	popup((host?host:'')+'/support/privacy_statement_nonmembers','privacy_statement_non_members','540','635');
	return false;
}
// }}}
// {{{ popupVerisign(url)
/**
 *  based on http://www.verisign.com/seal/secure/install.html
 */
function popupVerisign(url) {
	//sealWin=window.open(url,"win",'toolbar=0,location=0,directories=0,status=1,menubar=1,scrollbars=1,resizable=1,width=500,height=450');
	sealWin=popup(url,'privacy_verisign',720,400);
	//self.name = "mainWin";
	return false;
}
// }}}
// {{{ new vs code 
dn="WWW.PLAXO.COM";
lang="en";
aff="VeriSignCACenter";
tpt="transparent";
vrsn_style="WW";
splash_url="https://seal.verisign.com";
seal_url="https://seal.verisign.com";
u1=splash_url+"/splash?form_file=fdf/splash.fdf&dn="+dn+"&lang="+lang;

function vrsn_splash() {
tbar = "location=yes,status=yes,resizable=yes,scrollbars=yes,width=560,height=500";
sw = window.open(u1,'VRSN_Splash',tbar);
sw.focus();
}

// }}}
// {{{ popupTrustE(url)
/**
 *  based on http://www.verisign.com/seal/secure/install.html
 */
function popupTrustE(url) {
	sealWin=popup('https://www.truste.org/ivalidate.php?url='+url,'privacy_truste',800,400);
	//self.name = "mainWin";
	return false;
}
// }}}
