/****************************************
*	check that either of the parent 	*
*	pages (index.php or index-sml.php)	*
*	called the content pages. if the 	*
*	content pages are loaded directly,	*
*	load the index.htm page (so that 	*
*	the resolution can be known and the *
*	correct parent page is loaded) and	*
*	parse the url of the content page	*
*	so it can be displayed properly.	*
****************************************/

if (parent!="true"){
	var fname=String(this.location);  
	fname=fname.split("/");  
	fname=fname[fname.length-1].split(".");  
	fname=fname[fname.length-2];
	
	location.href="http://spykes.co.uk/index.htm?pageid="+fname;
}
else{}
