function timer(productname,countryname)
{
	window.setTimeout("Message('"+productname+"','"+countryname+"')",300000);
}

function Message(productname,countryname)
{
	path = "https://infinity.icicibank.lk/srilanka/web/LeadForm/Jsp/pop_up.jsp?product_id="+productname+"&country="+countryname+"";
 	
	str = "scrollbars=no,width=600,height=280";

	if (typeof win2=="undefined" || win2.closed)
		
		win2 = window.open(path,"popup",str);

	timer(productname,countryname);
}

function CloseWindow(productname,countryname)
{
	if ((window.event.clientX < 0) && (window.event.clientY < 0)) 
	{
		str = "scrollbars=no,width=600,height=280";
		
		path = "https://infinity.icicibank.lk/srilanka/web/LeadForm/Jsp/pop_up.jsp?product_id="+productname+"&country="+countryname+"";
		
		win = window.open(path,"popup",str);
	}
}
