// template JavaScript

var mainWin = 0;

function openWindow(url){
	mainWin = window.open(url,'coldWin','toolbar=no,location=no,directories=no,status=no,menubar=no,scrollbars=yes,resizable=no,copyhistory=yes,width=500,height=500,left=40, top=40,screenX=40,screenY=40');
	}

function openSizedWindow(url,width,height){
	adWin = window.open(url,'adWin','toolbar=no,location=no,directories=no,status=no,menubar=no,scrollbars=auto,resizable=yes,copyhistory=yes,width='+width+',height='+height+',left=40, top=40,screenX=10,screenY=10');
	}


function setBookmark(){
url = window.location;
str = "website name" + window.location;

window.external.AddFavorite(url,str);
 
 } 

function emailLink(){
	if( page != "Home page"){
		lPath = "../";
		}else{
			lPath = "";
		}
		//alert(lPath);
 document.write('<a href="mailto:typeRecipientHere@ThereEmail.com?Subject=Middlesexrfc.com&Body=Middlesex Barbarians Rugby Football Club link - ' + window.location + '" alt="email link to friend"><img src="' + lPath + 'images/icon_email.gif" width="42" border="0" height="24" /></a>');
 }

function shake(){
for (i = 5; i > 0; i--) {
parent.moveBy(0,i);
parent.moveBy(i,0);
parent.moveBy(0,-i);
parent.moveBy(-i,0);
      }

}
function linkPath(page, popup){
	if(window.location != "index.php")
	{
		page = "../"+page; 
		window.location = page;
	}else{
		window.location = page;
	}
	if(popup != "no"){
	openWindow(page);
	}else{

	}
}

function printLinks(){
if(page != "Home page"){
	lPath = "../";
}else{
	lPath = "";
}
var links = new Array();
 links["Home page"]=lPath + "index.php"; 
  links["Shop our products"]=lPath + "products.php"; 
 links["Music & your child"]=lPath + "music.php"; 
 links["About us"]=lPath + "about.php"; 
 links["Contact us"]=lPath + "contact.php"; 
 
for( i in links)
{
	if(page != i){
	var linkClass ="class='off'";
	}else{
	var linkClass ="class='on'";
	}
	document.write('<a href="'+links[i]+'" '+linkClass+'>'+i+'</a> ');
}


}



