// JavaScript Document

/*Function to open a popup window
@param url: the url of the page to open
@param title: the title of the page

*/
function pop_up_window(url, title)
{
	//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,title, 'height=300,width=600,scrollbars=yes');

	if (window.focus) {newwindow.focus()}
}

/*
Function to open a popup window that submits a form from a hyperlink

*/
function get_ups_tracking()
{
  //Submits form to a popup window from a hyperlink
  window.open("", "submitTarget","width=775,height=350,scrollbars=yes");
  document.ups_form.target = "submitTarget";
  document.ups_form.submit();
}