// JavaScript Document
function openWindow(loc,window_h,window_w,id,name) {
	var opt = "width="+window_w+",height="+window_h+",left=10,top=10,scrollbars=yes,resizable=yes";
	newwindow = window.open(loc,id,opt);
	newwindow.focus();
}
