

	var randomnumber=Math.floor(Math.random()*5)

	switch(randomnumber)
	{
		case 1:
		  linkURL = "http://www.thebabysroom.co.uk/html/Grobag_0-6m.php"
		  break    
		case 2:
		  linkURL = "http://www.thebabysroom.co.uk/html/BigMat.php"
		  break
		case 3:
		  linkURL = "http://www.thebabysroom.co.uk/html/EmmaJane.php"
		  break
		case 4:
		  linkURL = "http://www.thebabysroom.co.uk/html/Parasol.php"
		  break
		default:
		  linkURL = "http://www.thebabysroom.co.uk/html/Main.php"
	}


	if (parent.document.URL) {
		callingURL = parent.document.URL
		if (callingURL.indexOf('?') != -1) {
			linkURL = callingURL.substring(callingURL.indexOf('?')+1,callingURL.length)
		}
	}

	document.writeln('<FRAMESET   COLS = "180,* " FRAMEBORDER="NO" FRAMESPACING=0>')
	document.writeln('<FRAME SRC="http://www.thebabysroom.co.uk/html/LeftFrame.php" NAME="Nag" scrolling="NO" noresize>')
	document.writeln('<FRAME SRC="' + linkURL + '" NAME="content" scrollbar-base-color:"white" RESIZE>')
	document.writeln('<\/FRAMESET>')


