﻿// JScript File

var count = 0;
    
function SendOfferToFriend(id)
{
	window.open("SendOfferToFriend.aspx?id=" + id,"","menubar=0,resizable=0,width=520,height=200");
}

    
function ShowPicsInOffer( id, h, w )
{	        
    document.getElementById("pic").innerHTML = "<img src=pic.aspx?id=" + id + "&h=" + h + "&w=" + w + " />";
}	     	    	
   
function DisplayImot( idImot )
	{
		window.open( 'Offer.aspx?id=' + idImot, '_blank', 'height=700,width=1000, resizable=yes,location=yes,menubar=no,status=yes,toolbar=yes,scrollbars=yes,titlebar=no,dependent=yes', true );
    }
     
function GetXmlHttpObject()
    {         
	    var objXMLHttp = null;
	    if (window.XMLHttpRequest)
		    objXMLHttp = new XMLHttpRequest();
	    else if (window.ActiveXObject)
	        try
            {
              objXMLHttp = new ActiveXObject("Msxml2.XMLHTTP")
            }
            catch(e)
            {
              try
              {
                objXMLHttp = new ActiveXObject("Microsoft.XMLHTTP")
              }
              catch(e) {}
            }
	    return objXMLHttp;
    }

function GetRandomeTopOffer()
    {           
        xmlHttp = GetXmlHttpObject();
	    if (xmlHttp == null)
	    {
		    return;
		} 				
		if (count > 0)
		{		    
		    xmlHttp.onreadystatechange = ReloadTopOffer;
	        xmlHttp.open("GET", "TopOffers.aspx?"+count, true);	    	    
	        xmlHttp.send(null);	    	        	    
	    }
	    setTimeout(GetRandomeTopOffer, 30000);
	    count++;
    }    
    

function DisplayPic( id )
{
	window.open( 'PicBig.aspx?id=' + id, '_blank', 'height=600,width=600,resizable=yes,location=no,menubar=no,status=yes,toolbar=yes,scrollbars=yes,titlebar=no,dependent=yes', true );
}