/**********
//** div toggler
//** 
//**
//**
************/

/*function toggle(showHideDiv, switchImgTag) {
	var ele = document.getElementById(showHideDiv);
	var imageEle = document.getElementById(switchImgTag);
	if(ele.style.display == "block") {
			ele.style.display = "none";
	imageEle.innerHTML = '<img src="/images/plus4-2.png" alt="plus" />';
	}
	else {
			ele.style.display = "block";
			imageEle.innerHTML = '<img src="/images/minus4-2.png" alt="minus" />';
	}
}*/

function openWindow(url) {
		
		params  = 'width='+750;
		params += ', height='+screen.height-10;
		params += ', top=0, left=0';

		newwin=window.open(url,'Detoweb', params);
		if (window.focus) {newwin.focus()}
		return false;
		
		
		//newwindow=window.open(url, "Detoweb", config="location=1, directories=0, status=1, resizable=1, menubar=0, toolbar=0, scrollbars=1, width=750, height=500");
		//if (window.focus) {newwindow.focus()}
		//return false;
		}
		// End -->
		
