function redirect(strUrl)
{
if (strUrl.indexOf("http://") == -1)
	strUrl = "http://" + strUrl; 
window.open(strUrl);
}
