//hide layers
function hide(target) {

	obj=document.getElementById(target);
	obj.style.display = 'none';
}

//show layers
function show(target) {

	obj=document.getElementById(target);
	obj.style.display = 'block';
}

function toggle(target) {

	obj=document.getElementById(target);
	obj.style.display=( (obj.style.display=='none') ? '' : 'none');
}

//open new window
function OpenBrWindow(theURL,winName,features, myWidth, myHeight, isCenter) { //v3.0
	  if(window.screen)if(isCenter)if(isCenter=="true"){
		var myLeft = (screen.width-myWidth)/2;
		var myTop = (screen.height-myHeight)/2;
		features+=(features!='')?',':'';
		features+=',left='+myLeft+',top='+myTop;
	  }
	window.open(theURL,winName,features+((features!='')?',':'')+'width='+myWidth +',height='+myHeight);
}

//url code
//<a href="javascript:;" onClick="OpenBrWindow('http://www.pinnaclepromotions.com/components/immediate_contact.php4','win','toolbar=0,directories=0,location=0,status=0,menubar=0,scrollbars=0,resizable=0','450','350','true')">link text</a>


//product callouts
function chFrame(iframeURL) {
	parent.detailbox.location.href=iframeURL;
}