/**
 * open_edit_window.js
 * 2008/03/09
 * Version 0.1
 * Copyright (C) 2008 McGourty Associates, LLC
 * http://mcgourty.com
 * 
 * use: place in head section:
 * <script type="text/javascript" src="js/open_window.js"></script>
 * place line in html code:
 * <a href="javascript:open_link_window('http://www.TARGET.XXX')">name</a>
 */
 var winName = '_blank';
 var winSpecs = 'toolbar=yes, titlebar=yes, location=yes, directories=yes, status=yes, menubar=yes, scrollbars=yes, resizable=no, copyhistory=no, width=800, height=600';
var reserveTarget = 'https://Secure.RezOvation.com/Reservations/CheckAvailability.aspx?_0SSI734HEKX4VA';
 function open_link_window(thisWindow) {
		window.open(thisWindow);
 }
 
 function open_edit_window(thisWindow) {
		var winObj=open(thisWindow);
 }
 
function open_window(){
	window.open(reserveTarget);//,winName,winSpecs);
}

