/**********************************************************
*                                                         *
* Function    :    openwindow()                           *
*                                                         *
* Description :    This method creates a new window		  *	
*				   using the arguments passed, link		  *	
*				   location, window name, width and       *
*				   height of window	 `					  *
*                  										  *
* Trigger     :   				                          *
*                                                         *
**********************************************************/
function openwindow(strfilename, strwinname, intwidth, intheight)
{
	window.open(strfilename,strwinname,"toolbar=no,location=no,resizable=1,directories=no,menubar=yes,scrollbars=yes,width="+intwidth+",height="+intheight);
}  