﻿// JScript File

function newWindow(theURL,winName,features) 
{ 
  window.open(theURL,winName,features);
}

function printWineList()
{
    newWindow('/forprint/Wine.aspx','coleswine','scrollbars=yes,menubar=yes,width=480,height=500')
}

function printLovellList()
{
    newWindow('/forprint/LovellList.aspx','coleswine','scrollbars=yes,menubar=yes,width=480,height=500')
}

function printPartyMenu()
{
    newWindow('/forprint/LargePartiesMenu.aspx','colesmenu','scrollbars=yes,menubar=yes,width=480,height=500')
}

function printDirections()
{
    newWindow('/forprint/Directions.aspx','colesmenu','scrollbars=yes,menubar=yes,width=480,height=500')
}

function printChristmasMenu()
{
    newWindow('/forprint/ChristmasMenu.aspx','coleschristmas','scrollbars=yes,menubar=yes,width=480,height=500')
}

function printChristmasLunchMenu()
{
    newWindow('/forprint/ChristmasLunchMenu.aspx','coleschristmaslunch','scrollbars=yes,menubar=yes,width=480,height=500')
}

function printChristmasDinnerMenu()
{
    newWindow('/forprint/ChristmasDinnerMenu.aspx','coleschristmasdinner','scrollbars=yes,menubar=yes,width=480,height=500')
}
