function OpenProperty(iId)
{
	var o = window.open("../main/show.aspx?Id=" + iId,"virtualtour","width=718,height=780,scrollbars=yes,status=yes");
}

function OpenVirtualTour(iPropertyId)
{
	var o = window.open("../main/virtual-tour.aspx?property=" + iPropertyId,"virtualtour","width=820,height=600,scrollbars=yes,status=yes");
}

function OpenFlyer(iPropertyId, sFlyerFile)
{
	var o = window.open("../main/" + sFlyerFile + "?property=" + iPropertyId,"flyer","width=718,height=780,scrollbars=yes,status=yes");
}

function OpenFlyerImage(iPropertyId, sFlyerFile)
{
	var o = window.open("../Main/BuildBrochureImage.aspx?model=" + sFlyerFile + "&property=" + iPropertyId + "&type=jpg","flyerimage","width=718,height=780,scrollbars=yes,status=yes");
}

function OpenWebsite(sUserName, sWebsiteModel, iPageId)
{
	var o = window.open("../site/" + sWebsiteModel + "?u=" + sUserName + ((iPageId != null) ? "&page=" + iPageId : ""),"website","width=900,height=780,scrollbars=yes,status=yes");
}

function OpenVirtualTourFullScreen(iPropertyId)
{
	var iWidth = screen.availWidth;
	var iHeight = screen.availHeight;
	var o = window.open("../main/virtual-tour.aspx?property=" + iPropertyId,"virtualtour","width=" + iWidth + ",height=" + iHeight + ",scrollbars=yes,status=yes");
}

function OpenFlyerFullScreen(iPropertyId, sFlyerFile)
{
	var iWidth = screen.availWidth;
	var iHeight = screen.availHeight;
	var o = window.open("../main/" + sFlyerFile + "?property=" + iPropertyId,"flyer","width=" + iWidth + ",height=" + iHeight + ",scrollbars=yes,status=yes");
}

function OpenWebsiteFullScreen(sUserName, sWebsiteModel, iPageId)
{
	var iWidth = screen.availWidth;
	var iHeight = screen.availHeight;
	var o = window.open("../site/" + sWebsiteModel + "?u=" + sUserName + ((iPageId != null) ? "&page=" + iPageId : ""),"website","width=" + iWidth + ",height=" + iHeight + ",scrollbars=yes,status=yes");
}
