// JavaScript Document
function open_window_ex(strURL, strWindowName, intWidth, intHeight) {
	window.open(strURL,strWindowName,'width='+ intWidth + ', height=' + intHeight);
}
