// This small script fix IE6/Win "float" bug
// Original Author: Aaron Boodman, [http://youngpup.net]

if (document.all && window.attachEvent) window.attachEvent("onload", fixWinIE);
function fixWinIE() {
	if (document.body.scrollHeight < document.all.sidebar.offsetHeight) {
		document.all.sidebar.style.display='block';
	}
}

function abrir(URL, width, height, scroll) {
	if (scroll == 'no') scrol = 'scrollbars=no';
	else scrol = 'scrollbars=yes';
	window.open(URL, 'popup', "width=" + width + ",height=" + height + "," + scrol + ",menubar=no,location=no,resizable=no")
}