function popUpWin(theURL,winName,features) {
  var winName = window.open(theURL,winName,features);
}
var win = null;
function openCenteredWin(theURL,theName,w,h,scroll){
	// center the new window
	var winl = (screen.width - w)/2;
	var wint = (screen.height - h)/2;
	var settings ='height='+ h +',';
	settings +='width='+ w +',';
	settings +='top='+ wint +',';
	settings +='left='+ winl +',';
	settings +='scrollbars='+ scroll +',';
	settings +='resizable=yes';
	// open the window
	win = window.open(theURL,theName,settings);
	if(parseInt(navigator.appVersion) >= 4){win.window.focus();}
	// use this format:
	// <a href="javascript:openCenteredWin('http://wwww.url.com','name','400','400','yes');"></a>
}
// ---------------------------------------------------------------- |
function privacyLink(){
	window.open('http://www.zippo.com/privacyPolicy.aspx','privacyPolicy','scrollbars=yes,width=575,height=500');
}

function legalLink(){
	window.open('http://www.zippo.com/legal.aspx','legal','scrollbars=yes,width=575,height=500');
}

function contactLink() {
	window.open('http://www.zippo.com/contactForm.aspx?formType=advertising','contact','scrollbars=yes,height=450,width=575');
}

function mailingList(){
	window.open('http://www.zippo.com/joinMailingList.aspx','mailingList','width=615,height=390,scrollbars=yes');
}