﻿function windowOpen(sUrl, iWidth, iHeight) {



	if (iWidth && iWidth != "" && iHeight && iHeight != "") {

		window.open(sUrl, "_blank", "toolbar=no, location=no, status=no, menubar=no, personalbar=no, scrollbars=yes, width=" + iWidth + ", height=" + iHeight + ", resizable=yes, screenx=50, left=50, screenY=50, top=50");

	}

	else {

		window.open(sUrl, "_blank", "toolbar=no, location=no, status=no, menubar=no, personalbar=no, scrollbars=yes, width=775, height=500, resizable=yes, screenx=50, left=50, screenY=50, top=50");

	}

}