// open_window.js

// newFunction
//function OpenWin() {
//	window.open("./lm_with_supply_img.html","window1","width=1000, height=708");
//}
function OpenWin(url, title, width, height,left,top) {
	windowFeatures = "width=" + width + ",height=" + height + ",left=" + left +",top=" + top ; 
	window.open(url, title, windowFeatures);
}

function WinCls(){
	window.close()
}

