/*************************************************************/
/*                                                           */
/*	file	: openwin.js                                     */
/*	auther	: Cyril                                          */
/*                                                           */
/*	http://feefifofum.cocolog-nifty.com/                     */
/*	                                                         */
/*************************************************************/

/*************************************************************
*
*	open new window
*
*************************************************************/
function openwindow( openurl, target, winWidth, winHeight ) {

	w=window.open( openurl, target, ("width=" + winWidth + ",height=" + winHeight ) );
	w.focus();
}
