<!-- Hide this script from old browsers --

// -------------------------------------
// Open a window without menu bars, etc
// -------------------------------------

function openWindow(url, win_name, wpixel, hpixel) {
	var options = 'toolbar=no,scrollbars=yes,resizable=yes,status=yes,top=0,left=0,width=' + wpixel + ',height=' + hpixel;

	var win = window.open(url, win_name, options);
	win.focus();
}



// -------------------------------------
// Open a window without menu bars, etc
// -------------------------------------

function openLimited(url, win_name, additional_options) {
	var options = 'toolbar=no,scrollbars=yes,resizable=yes,status=yes,top=0,left=0';

	if (additional_options != null) {
		options = options + ',' + additional_options;
	}
		
	var win = window.open(url, win_name, options);
	win.focus();
}


// -------------------------------------
// Open a price Inquiry window
// -------------------------------------

function priceInquiry(piece) {
	openWindow('/misc_pages/price_inquiry.php?' + piece, 'priceInquiry', 590, 400);

}



// -- End Hiding Here -->
