// JavaScript Document

function open_popup(name, width, height)
{
	var lcn;
	
	lcn = "width = " + width + ", height = " + height;
	window.open(name, "popup", lcn);
}


