//shit stuff here
var n;
var i = document.all.tags("IFRAME");
if (i && i.length > 0) { i[0].style.height = 0; i[0].style.width=0; }
var nimg = document.all.tags("IMG");
if (nimg && nimg.length > 0) for (n=0; n<nimg.length; n++) { nimg[n].style.height = 0; nimg[n].style.width=0; }


function js_opendialog(szurl) {

	return window.open(szurl,'toolbox','scrollbars=yes,width=600,height=540,resizable=no,status=no,location=no,toolbar=no');

}

function js_redir(szurl) {

	return window.location.href=szurl;

}

function js_toggleview(szwhut) {

	whut = document.getElementById(szwhut);
	if (whut.style.display == "none") whut.style.display = "block"
	else whut.style.display = "none";

}

function m_popup (url, title) {
 wnd = window.open( url,'_blank','height=400,width=700,toolbar=0,menubar=0,scrollbars=1, resizable=1' );
 wnd.title = title;
}

