﻿// JScript File
//open a new window for accomodation
//function openWindow() 
//{
//    window.open("","AccommodationDetails",'scrollbars, width=984, height=700, resizable');
//}
function openWindow() 
{
    window.open("","AccommodationDetails",'toolbar=no, location=no, directories=no, status=no, menubar=no, scrollbars=yes, width=984, height=700, copyhistory=yes, resizable=yes, bReplace=yes');
}

function openOuterWindow(url)
{
    window.open(url,'','scrollbars=yes, width=984, height=700, resizable=yes')
}

function openRoomsWindow()
{
    window.open("","Account/RoomTypes.aspx",'scrollbars, width=436, height=450, resizable')
}

///Test - could not resolve passing params with Eval("Whatever") syntax
//var windows=[];
//function load(winName, url) 
//{
//windows[winName] = window.open(url,'','scrollbars=no,menubar=no,height=400,width=305,resizable=no,toolbar=no,locatio n=no,status=no');
//}


