<!--

// ----------------------------------------------
// Author : Benoit Carpentier http://www.tcs.ch
// Description : Utilies javascript functions
// Creation date : 01-12-2004
// 
// ----------------------------------------------

/* 
 * Function called on BBody load step.
 * Read the PicFontStyle Cookie and creat one if not exist.
 * 
 */
function openPrintWindow(theURL,winName,features) { 
  	var myWindow = window.open(theURL,winName,features);
	myWindow.focus();
    myWindow.print();

}

