// JavaScript Document

// Open Target Page in a Popup Window
function new_window(target,title,width,height)
{
	var style = "width="+width+",height="+height+"resizeable=1;scrollbars=1";
	window.open(target,null,style);
}

function clear_background(target)
{
	document.getElementById(target).style.background = "";
//	document.getElementById(target).bgColor = "#000000";	
}
