// JavaScript Document

/*Function to open a popup window
@param url: the url of the page to open

*/
function pop_up_window(url)
{
	//alert('test');
	//newwindow=window.open(url,'Accessories', 'height=500,width=700,scrollbars=yes, menubar=yes, titlebar=yes, toolbar=yes, location=yes');
	newwindow=window.open(url,"window", 'height=400,width=750,scrollbars=yes');

	if (window.focus) {newwindow.focus()}
}

