//--------Email signup popup code

function popEmailwin() {

theUrl = 'http://www.pincusproed.com/html/emailPop.php'
window.open(theUrl,'','toolbar=no,location=no,directories=no,status=no,menubar=no,scrollbars=no,resizable=yes,width=385,height=260');
}
function openPopup(name, url, height, width, menubar, location, toolbar, scrollbars, resizable){
	var tmpPopup;
	var strProperties = "menubar=" + menubar + ",location=" + location + ",toolbar=" + toolbar + ",scrollbars=" + scrollbars + ",resizable=" + resizable + ",width=" + width + ",height=" + height;
	tmpPopup = window.open(url, name, strProperties);
	tmpPopup.focus();
}

//--------Validate email form
function checkvalid()
{
// check to see if the field is blank
if (document.emailform.name.value == "")   {
alert("Please enter your name.");
return false;
}
if (document.emailform.email.value == "")   {
alert("Please enter your email address.");
return false;
}
else {

document.emailform.submit();
}
}

//--------Tell-a-friend popup code

function popTAFwin() {
theUrl = 'http://s116541872.onlinehome.us/html/tellafriend.asp?refer='+ window.location + '&title=' +document.title+ '&';
window.open(theUrl,'','toolbar=no,location=no,directories=no,status=no,menubar=no,scrollbars=no,resizable=yes,width=385,height=400');
}
function openPopup(name, url, height, width, menubar, location, toolbar, scrollbars, resizable){
	var tmpPopup;
	var strProperties = "menubar=" + menubar + ",location=" + location + ",toolbar=" + toolbar + ",scrollbars=" + scrollbars + ",resizable=" + resizable + ",width=" + width + ",height=" + height;
	tmpPopup = window.open(url, name, strProperties);
	tmpPopup.focus();
}


//--------Ezine open once popup code

var popunder=new Array();
popunder[0]='html/ezinepop.html';

function get_cookie(Name){
var search=Name+'=';
var returnvalue='';
if(document.cookie.length>0){
offset=document.cookie.indexOf(search);
if(offset!=-1){
	offset+=search.length;
	end=document.cookie.indexOf(';',offset);
if(end==-1)
	end=document.cookie.length;
returnvalue=unescape(document.cookie.substring(offset,end))
}
}
return returnvalue;
}
function openWindowRemote(){
if (get_cookie('popunder')=='')
{
document.cookie="popunder=yes";
win2=window.open(popunder[0],'',"width=385,height=350,scrollbars=no,resizable=no,toolbar=no,menubar=no,status=no,location=no");
//var SCRwidth  = (window.screen.width-200)/2;var SCRheight = (window.screen.height-300)/2;
//win2.moveTo(SCRwidth, SCRheight);
win2.focus();
}
}