﻿
function openWindow(strURL) {
		jsWindow = window.open(strURL,"new_win","width=800,height=1200,toolbar=yes,menubar=yes, location=yes, scrollbars=yes,resizable=yes,top=1,left=1");
		jsWindow.focus();
	}

function OpenNewSmallWindow(strURL) {
    jsWindow = window.open(strURL, "small_win", "width=600,height=500,top=1,left=1,location=no,toolbar=no,menubar=no,scrollbars=no,resizable=no");
    jsWindow.focus();
}
