function linkTo(url)
{
	var newWidth = document.width * 0.75;
	if(isNaN(newWidth))
	{
		newWidth = 900;
	}
	linkWindow = window.open(url, "Subpage", "width=" + newWidth + ",height=600,location=1,toolbar=1,scrollbars=1,menubar=1,resizable=1,top=0,left=0,directories=1");	
}
