// JavaScript Document

var theImages = new Array();

theImages[0] = '<img src="http://info.topnichepartners.com/images/offers/Hypnosis_Insider.jpg" title="Hypnosis Insider" border="0">';
theImages[1] = '<img src="http://info.topnichepartners.com/images/offers/Maldini_HoldEm_Secrets.jpg" title="Maldini Holdem Secrets" border="0">';
theImages[2] = '<img src="http://info.topnichepartners.com/images/offers/Maldini_Sports_Betting.jpg" title="Maldini Sports Betting" border="0">';
theImages[3] = '<img src="http://info.topnichepartners.com/images/offers/Old_Witchcraft.jpg" title="Old Witchcraft" border="0">';
theImages[4] = '<img src="http://info.topnichepartners.com/images/offers/Slot_Machines_Mastery.jpg" title="Slot Machines Mastery" border="0">';
theImages[5] = '<img src="http://info.topnichepartners.com/images/offers/Winning_Lotto_Strategies.jpg" title="Winning Lotto Strategies" border="0">';
theImages[6] = '<img src="http://info.topnichepartners.com/images/offers/Witchcraft_Exposed.jpg" title="Witchcraft Exposed" border="0">';

var theImages_length = theImages.length;

var whichImage = Math.round(Math.random()*(theImages_length - 1));

function showImage()
{
	document.write('<a href="http://info.topnichepartners.com/sitelist.php">' + theImages[whichImage] + '</a>');
}

function popUp(URL) {
day = new Date();
id = day.getTime();
eval("page" + id + " = window.open(URL, '" + id + "', 'toolbar=0,scrollbars=0,location=0,statusbar=0,menubar=0,resizable=0,width=400,height=300,left = 640,top = 350');");
}

function validateEmail(emailField){
 emailpattern = /^([a-zA-Z0-9])+([\.a-zA-Z0-9_-])*@([a-zA-Z0-9])+(\.[a-zA-Z0-9_-]+)+$/;
 if (!emailpattern.test(emailField.value)) 
 	{
   		return false;
	}
 return true;
}

function validateform(){
	if (document.advertiser_form.advertiser_fname.value == ""){
		alert("Please fill in your name !");
		return false;
		}
		else if (!validateEmail(document.advertiser_form.advertiser_email)){
				alert("Please insert a correct email adress !");
				return false;
				}
				else if (document.advertiser_form.advertiser_product_description.value == ""){
						alert("Please fill in the Description Field !");
						return false;
						}
						else return true;
}

function validate_contact_form(){
	if (document.contact_form.contact_name.value == ""){
		alert("Please fill in your name !");
		return false;
		}
		else if (!validateEmail(document.contact_form.contact_email)){
				alert("Please insert a correct email adress !");
				return false;
				}
				else if (document.contact_form.contact_subject.value == ""){
						alert("Please fill in the Subject!");
						return false;
						}
						else return true;
}



function openWin(url)
{
	aWindow = window.open(url,"thewindow",'toolbar=0,location=0,directories=0,status=0,menubar=0, width=400, height=400, scrollbars, resizable');
	aWindow.focus();
}