function goTo(reference){
	var obj_container = document.getElementById("target");

	var obj_link_hotsite = document.createElement("div");
	obj_link_hotsite.className = "link";
	obj_link_hotsite.style.height = "20px";
	obj_link_hotsite.style.width = "95px";
	obj_link_hotsite.style.left = "380px";
	obj_link_hotsite.style.top = "310px";

	obj_link_hotsite.onclick = function(){
		var screen_width = screen.availWidth;
		var screen_height = screen.availHeight;

		if (screen_width < 1) screen_width = screen_width;
		if (screen_height < 1) screen_width = screen_height;

		position_left = Math.floor(screen_width / 2) - Math.floor(screen_width / 2);
		position_top = Math.floor(screen_height / 2) - Math.floor(screen_height / 2);

		if(obj_browser_name == "EXPLORER"){
			window.open("hotsite.htm", name, "scrollbars=no, links=no, status=yes, toolbars=no, location=no, left="+ position_left +", top="+ position_top +", width="+ (screen_width - 10) +", height="+ (screen_height - 50));
		}
		else{
			window.open("hotsite.htm", name, "scrollbars=no, links=no, toolbars=no, location=no, left="+ position_left +", top="+ position_top +", width="+ screen_width +", height="+ screen_height);
		}
	};

	obj_container.appendChild(obj_link_hotsite);

	var obj_link_flash = document.createElement("div");
	obj_link_flash.className = "link";
	obj_link_flash.style.height = "15px";
	obj_link_flash.style.width = "25px";
	obj_link_flash.style.left = "550px";
	obj_link_flash.style.top = "260px";

	obj_link_flash.onclick = function(){
		window.open("http://adobe.com/go/getflash/", "flash");
	};

	obj_container.appendChild(obj_link_flash);
}
