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);
}

