var newWin;

function showPicture(fileName) {
	var theURL = "http://www.seatingarrangement.com/show_image.cfm?pic=" + fileName;
	newWin = window.open(theURL, "help", "resizable=yes,height=582,width=759,top=0,left=0");
	newWin.focus();
}

function showDemo(demoName,demoWidth,demoHeight) {
	var theURL = "http://www.seatingarrangement.com/demos/show_demo.cfm?demoName=" + demoName;
	newWin = window.open(theURL, "Demo", "resizable=yes,height=" + demoHeight + ",width=" + demoWidth + ",top=0,left=0");
	newWin.focus();
}

function showSeatingAssignmentDemo() {
	var theURL = "http://www.seatingarrangement.com/demos/seating_assignment_demo.htm"
	newWin = window.open(theURL, "Demo", "resizable=yes,height=559,width=734,top=0,left=0");
	newWin.focus();
}

function showFloorPlanDemo() {
	var theURL = "http://www.seatingarrangement.com/demos/floor_plan_demo.htm"
	newWin = window.open(theURL, "Demo", "resizable=yes,height=559,width=734,top=0,left=0");
	newWin.focus();
}
