function openNewWindow(sSrc, sWidth, sHeight,sScroll) {
	if(sScroll == "") {
		sScroll == 0;
	}
	
	var sAtributes = 'resizable=1,status=0,menubar=0,toolbar=0,scrollbars=' + sScroll + ',width=' + sWidth + ',height=' + sHeight + ',top=100,left=100';
	window.open(sSrc,'',sAtributes);
}

function openNewTroubleShooting(sSrc, sWidth, sHeight,sScroll) {
	if(sScroll == "") {
		sScroll == 0;
	}
	
	var sAtributes = 'resizable=1,status=0,menubar=1,toolbar=1,scrollbars=' + sScroll + ',width=' + sWidth + ',height=' + sHeight + ',top=100,left=100';
	window.open(sSrc,'',sAtributes);
}

function postTo(url) {
	
	var f = document.forms.mainform;	
	f.action=url;
	f.submit();
	return false;
}