/******************************  FUNCTION  *******************************
*                                                                         
* Function: launchWindow
*                                                                         
* Description:  This function launches a new window and loads the page 
*               specified by the argument "url".
*
* Argument List:
*     url              link of the page to be loaded to the new window
*
* Example of Usage: <a href="javascript:launchWindow('contact.asp')">
*
**************************************************************************/
function launchWindow(url){
	day = new Date();
	id = day.getTime();
	eval("page" + id + " = window.open(url, '" + id + "', 'toolbar=0,scrollbars=1,location=0,statusbar=0,menubar=0,resizable=0,width=450,height=400,left=50,top=50');");
}

/******************************  FUNCTION  *******************************
*                                                                         
* Function: launchNewWindow
*                                                                         
* Description:  This function launches a new window and loads the page 
*               specified by the argument "url".
*
* Argument List:
*     url              link of the page to be loaded to the new window
*     name             name of the new window
*     features         features of the new window
*
* Example of Usage: <onClick="launchNewWindow('product/tr08.html','newWin','scrollbars=yes,resizable=yes,width=420,height=550')">
*
**************************************************************************/
function launchNewWindow(url,name,features) 
{
  window.open(url, name, features);
}

