// the whole point of this file is it can be included on any page and a call
// to the below function will launch virtual rob, rather than duplicating code all over the place
// uses FQDN to ensure it works from any page.

function popup_virtual_rob() {
	var virtualrob;
	virtualrob="";
	virtualrob="http://www.jumpstation.co.uk/misc/virtual_rob/";
	virtualrob=virtualrob+"virtual_rob.html";

	window.open(virtualrob,"Virtual_Rob","height=140,width=150");
}

