	var newwindow;
	var wheight = 0, wwidth = 0;

	function ads(url, title, iwidth, iheight, colour) {
	var pwidth, pheight;

		if ( !newwindow || newwindow.closed ) {
		pwidth=iwidth+30;
		pheight=iheight+30;
		newwindow=window.open('','htmlname','width=' + pwidth +',height=' +pheight + ',resizable=1,top=50,left=10');
		wheight=iheight;
		wwidth=iwidth;
		}

		if (wheight!=iheight || wwidth!=iwidth ) {
		pwidth=iwidth+30;
		pheight=iheight+70;
		newwindow.resizeTo(pwidth, pheight);
		wheight=iheight;
		wwidth=iwidth;
		}

	newwindow.document.clear();
	newwindow.focus();
	newwindow.document.writeln('<html> <head> <title>' + title + '<\/title> <\/head> <body bgcolor= \"' + colour + '\"> <center>');
	newwindow.document.writeln('<img src=' + url + '>');
	newwindow.document.writeln('<\/center> <\/body> <\/html>');
	newwindow.document.close();
	newwindow.focus();
	return false;
	}

	function radio(radioname) {
		var pwidth = 500, pheight = 350;

			if ( !newwindow || newwindow.closed ) {
			newwindow=window.open(('someads/radio/'+radioname+'.html'),'htmlname','width=' + pwidth +',height=' +pheight + ', toolbar=0,location=0,directories=0,status=0,menubar=0,scrollbars=1,resizable=1,copyhistory=0');
			}

			if (wheight!=pheight || wwidth!=pwidth ) {
			newwindow.resizeTo(pwidth, pheight);
			wheight=pheight;
			wwidth=pwidth;
			}


		newwindow.document.clear();
		newwindow.focus();
		newwindow=window.open(('someads/radio/'+radioname+'.html'),'htmlname','width=' + pwidth +',height=' +pheight + ', toolbar=0,location=0,directories=0,status=0,menubar=0,scrollbars=1,resizable=1,copyhistory=0');
		newwindow.document.close();
		newwindow.focus();
		return false;
	}

	// Routines to tidy up popup windows when page is left
	// Call with an onUnload="tidy()" in body tag

	function tidy() {
	if (newwindow && !newwindow.closed) { newwindow.close(); }
	}


	//rollover
	normal_image = new Image();
	normal_image.src = "images/1.gif";

	mouseover_image = new Image();
	mouseover_image.src = "images/1on.gif";

	normal_image2 = new Image();
	normal_image2.src = "images/2.gif";

	mouseover_image2 = new Image();
	mouseover_image2.src = "images/2on.gif";

	normal_image3 = new Image();
	normal_image3.src = "images/3.gif";

	mouseover_image3 = new Image();
	mouseover_image3.src = "images/3on.gif";

	normal_image4 = new Image();
	normal_image4.src = "images/4.gif";

	mouseover_image4 = new Image();
	mouseover_image4.src = "images/4on.gif";


	normal_home = new Image();
	normal_home.src = "images/home.gif";

	mouseover_home = new Image();
	mouseover_home.src = "images/homeon.gif";

	normal_someads = new Image();
	normal_someads.src = "images/someads.gif";

	mouseover_someads = new Image();
	mouseover_someads.src = "images/someadson.gif";

	normal_seev = new Image();
	normal_seev.src = "images/seev.gif";

	mouseover_seev = new Image();
	mouseover_seev.src = "images/seevon.gif";

	normal_email = new Image();
	normal_email.src = "images/email.gif";

	mouseover_email = new Image();
	mouseover_email.src = "images/emailon.gif";


	function swap(){
	if (document.images){
	for (var x=0;
	x<swap.arguments.length;
	x+=2) {
	document[swap.arguments[x]].src = eval(swap.arguments[x+1] + ".src");
	}
	}
	}
