

    function setMainImage(pImage) {
        var x = eval(pImage)
        document.imageflip.src = x.src
    }

    function popImage(aid,pid)
    {
    var currImg = document.imageflip.src
    var iString = new String(currImg)
    var iName = iString.split("main/")
    var loc = "?aid=" + aid + "&pid=" + pid + "&pic=" + iName[1]
    var wHnd = null;
    //alert(currImg);
    wHnd = window.open(currImg,"imagePopup","width=400,height=300,resizable=yes")
    }

    function showFloorPlan(aid,pid)
    {
    var loc = "?aid=" + aid + "&pid=" + pid + "&width=900&height=900&propertyfloorplan=1"
    var wHnd = null;
    wHnd = window.open("default.aspx"+loc,"floorPlanPopup","width=900,height=900,propertyfloorplan=1,resizable=yes,menubar=yes,addressbar=yes")
    wHnd = wHnd;
    }

    function showParticulars(loc)
    {
    var wHndEA = null;
    wHndEA = window.open(loc,'null',"width=800,height=1024,left=10,top=10,resizable=yes,scrollbars=yes,menubar=yes");
    }


//	function __doPostBack(eventTarget, eventArgument) {
//		var theform;
//		if (window.navigator.appName.toLowerCase().indexOf("microsoft") > -1) {
//			theform = document.Form1;
//		}
//		else {
//			theform = document.forms["Form1"];
//		}
//		theform.__EVENTTARGET.value = eventTarget.split("$").join(":");
//		theform.__EVENTARGUMENT.value = eventArgument;
//		theform.submit();
//	}
