/*
==========================================================================
 File: WinOpen.js
 Created: 11/03/05
 Last Modified: 
 Purpose: Common functions
==========================================================================
*/

/*
Function	:	open_window()
Parameters	:	url = relative URL of page to load
				size = height of window
				name = window handler
Purpose		:	opens a new window for shopping cart & help files.
Called from	:	onclick() event handler
*/

function open_window(url, size, name) {
	var mywin = window.open(url,name,'top=100, left=300, toolbar=0, location=0, directories=0, status=0, menubar=0, scrollbars=1, resizable=0, width=560, height='+size);
}


//function open_window(url, size, name) {
//	var mywin = window.open(url,name,'top=100, left=300, toolbar=0, location=1, directories=0, status=1, menubar=0, scrollbars=1, resizable=1, width=480, height='+size);
//}

