function open_win(target, wdth, hght)
{
	var targetfile = "";
	targetfile = target + ".html";
	var winprop = "width=" + wdth + ",height=" + hght + ",location=no,resizable=no,status=no,scrollbars=auto,menubar=no";
	win = window.open(targetfile,"", winprop);
}