
$(document).ready(function()
{
	// TO close the window automatically after 10sec.
	$('#message_box').animate({g:1},12000).hide(1000);
	//scroll the message box to the top offset of browser's scrool bar
	$(window).scroll(function()
	{
  		//to scroll top once we scroll the window
		//$('#message_box').animate({top:$(window).scrollTop()+"px" },{queue: false, duration:1500}); 
		$('#message_box').animate({scrollTop: 0  },{queue: false, duration:1500}); 
		//$('#message_box').animate({g:1},10000).hide(1000);
	});
    //when the close button at right corner of the message box is clicked 
	$('#message_box').click(function()
	{
  		//the messagebox gets scrool down with top property and gets hidden with zero opacity	
		$('#message_box').animate({ top:"+=15px",opacity:0 }, "slow").hide();
	});	
});

 function openWin(x,width,height) 
{
 window.open(x,null,"width="+width+",height="+height+",menubar=0,toolbar=0,resizable=0,scrollbars=1");
}