// JavaScript Document
function openWindow( strUrl )
{
//alert("new window");

var http1 = strUrl.substr( 0, 4 );
if (  http1 != "http" )
	{
//	alert("http");
	strUrl = "http://" + strUrl;
	}
	
var newwin1 = open( strUrl );

}

