var DEBUG=true;

function __initdebug()
{
		if (DEBUG)
			windowDebug = window.open("", "windowDebug", 'toolbar,scrollbars, width=300,height=500,ScreenX=600') ;	
}

function __debug()
{
	if(DEBUG) {		
		var msg = "";
		for(var i=0; i < arguments.length; i++) {
		
		msg += (arguments[i] + " : ");
		}	
		windowDebug.document.write(msg + "<br>");
		windowDebug.document.bgColor= "lightblue";			
	}
}

