function more(message)
{
	if (message == undefined)
	{
		message="Sorry, details not availble at the moment."
	}
		
	my_window= window.open ("","mywindow1","status=1,scrollbars=1,width=350,height=250"); 
	my_window.document.write('<font size=2 face=arial>' + message + '</font>');
}


function openWindow(url)
		{
			url="http://www.t2india.com/"+url;
			//alert(url);
			window.open(url, 'HOTELS','width=650,height=525,toolbar=no,location=no,directories=no,status=no,menubar=no,scrollbars=yes,copyhistory=yes,resizable=no,left=125,top=5,screenX=0,screenY=0');
		}


