// JavaScript Document

function OpenWin(URL) {
	var nwin = window.open(URL,'SRCH_WIN','height=800,width=800,scrollbars,resizable,status,toolbar');
	nwin.focus();
}

function OpenWinLg(URL) {
	var nwin = window.open(URL,'SRCH_WIN','height=800,width=1000,scrollbars,resizable,status,toolbar');
	nwin.focus();
}

function OpenWinSm(URL) {
	var nwin = window.open(URL,'SRCH_WIN','height=600,width=600,scrollbars,resizable,status,toolbar');
	nwin.focus();
}
