screenWidth=screen.availWidth;
var win = new Window("win2",{className:"alphacube",top:75,left:screenWidth/2-250/2,width:257,height:260, title:"",maximizable:false,minimizable:true,draggable:true});
function setCookie()
{
document.cookie="hidePopup=false";
win.hide();
}

setTimeout("showDiv()",300);
function showDiv()
{
var flag=false;

if (document.cookie.length>0)
  {
   c_check=document.cookie.indexOf("hidePopup=")
  
     if (c_check!=-1)
    { 
	 c_check=c_check + "hidePopup".length+1 
    c_end=document.cookie.indexOf(";",c_check)
    if (c_end==-1) c_end=document.cookie.length
   flag= true;
	}
  }
  if(!flag){
 
	win.getContent().innerHTML="<div><table cellpadding='0' cellspacing='0'><tr><td>"+
	
	
	

	"<!--<a href='http://www.alhindbuilders.com/viewproject.asp?IdPr=133%20&sts=Ongoing'><img src='images/cyber-popup.jpg' width='297' height='250' border='0'  /></a>-->"+
	
	
	"</td><td><a href='http://www.alhindbuilders.com/viewproject.asp?IdPr=114%20&sts=Ongoing'><span><img src='images/green-popup.jpg' width='253' height='250'  border='0' /></span></a></td></tr>"+
	
	"</table></div>";
	
    win.setDestroyOnClose();
    win.show();
	}
}

