
/*
-----------------------
Open Windows
-----------------------
*/

function openWindow(strUrl, option) {
	if (option=='') option='height=600,width=450,status=0,toolbar=0,menubar=0,location=0,resizable=1,scrollbars=1';

	if (window.opener) window.location=strUrl;
	else {
		wdw = window.open(strUrl, 'popup', option);
		wdw.focus();
	}
}



