function info(URL) {
if(URL){
	URL = URL.replace("http://","");
//	alert('http://'+URL);
mywindow = window.open('http://'+URL,'mywindow','toolbar=0,location=0,scrollbars=1,resizable=1');
mywindow.moveTo(0,0);
mywindow.resizeTo(screen.availWidth,screen.availHeight);
}else {
alert('Please insert valid link.');
document.s1.link.focus();	

}
}
