// JavaScript Document

var debug = false;

function dbg(msg)
{
	if(debug == true)
	{
		//console.log(msg);
	}
}


function openIt(url, width, height)
{
	dbg("WE ARE OPENING THE POP UP WINDOW");
	window.open (url,"subwin","resizable=1,width=" + width + ",height=" + height + ",status=0,scrollbars=1,toolbar=1");
}