// JavaScript Document

function popupWin() {
text =  "<html>\n<head>\n<title>Information about Latest Project</title>\n<style>.sty{font-family:Verdana, Arial, Helvetica, sans-serif;font-size:14px;color:#0033CC;font-weight:900;text-decoration:none;}</style>\n</head>\n<body class='sty'>\n";
text += "<center>\n<br>";
text += "<a href='http://www.puneproperties.com/kothrud/zinnea.php' target='_blank' class='sty'>Bhansali Associates Presents</a>";
text += "\n<br>\n<br>";
text += "<a href='http://www.puneproperties.com/kothrud/zinnea.php' target='_blank'><img src='http://www.puneproperties.com/images/zinnea-pop.gif' border='0'></a>";
text += "\n<br>\n<br>";
text += "Contact us at : +91-020-2433 6599 / 020-2433 2390.";
text += "</center>\n</body>\n</html>\n";
setTimeout('windowProp(text)', 0000); 		
}
function windowProp(text) {
newWindow = window.open('','newWin','width=500,height=480');
newWindow.document.write(text);
setTimeout('closeWin(newWindow)', 30000);	
}
function closeWin(newWindow) {
newWindow.close();				
}
