/*****************************************************
* popup
* 19/08/2001
*
* Open a simple nice window with url,width and height
* in arguments.
*
* --Sébastien Brémond--
* http://www.tocra.org
*****************************************************/

function openCTKINFOPopup(strURL,w,h){
	var FULLSCREEN_const = 'no';
	var sH = parseInt(screen.availHeight);
	var sW = parseInt(screen.availWidth);
	var pH = h;
	var pW = w;
	var winCTKINFO = open(strURL,'ctkWindow','top='+((sH-pH)/2)+',left='+((sW-pW)/2)+',width='+pW+',height='+pH+',scrollbars=yes,fullscreen='+FULLSCREEN_const);
	return winCTKINFO;
}
