function openLarge(code,shape, imagesrc) {
	w = 800, h = 600;
	w = screen.availWidth;
	h = screen.availHeight;
	
	popW = 500;
	popH = 500;
	
	leftPos = (w-popW)/2;
	topPos = ((h-popH)/2) * 0.75;

	window.open( rootdir + 'index.php?j=custom/iteminfo.php&p=' + code + '&t=large.htm&imagesrc='+escape(imagesrc),'Large','width=' + popW + ',height=' + popH + ',top=' + topPos + ',left=' + leftPos);
	
}

function openGroup(code) {
	w = 800, h = 600;
	w = screen.availWidth;
	h = screen.availHeight;
	
	popW = 500;
	popH = 500;
	
	leftPos = (w-popW)/2;
	topPos = ((h-popH)/2) * 0.75;
	window.open( rootdir + 'index.php?j=grupinfo.php&mod=shop&g=' + code + '&t=glarge.htm','Large','width=' + popW + ',height=' + popH + ',top=' + topPos + ',left=' + leftPos);
}


function openHelp(section) {

	w = 800, h = 600;
	w = screen.availWidth;
	h = screen.availHeight;
	popW = 420;
	popH = 330;
	leftPos = (w-popW)/2;
	topPos = (h-popH)/2;

	window.open( rootdir + 'index.php?j=help_frm.php&mod=help&target='+section,'help','width=' + popW + ',height=' + popH + ',top=' + topPos + ',left=' + leftPos);

}


function openSizing(anchorname) {

	w = 800, h = 600;
	w = screen.availWidth;
	h = screen.availHeight;
	popW = 600;
	popH = 480;
	leftPos = (w-popW)/2;
	topPos = (h-popH)/2;

	window.open( rootdir + 'index.php?j=custom/sizing.htm#'+ anchorname ,'help','scrollbars=yes,width=' + popW + ',height=' + popH + ',top=' + topPos + ',left=' + leftPos);

}

function openHelpMap(section) {

	w = 800, h = 600;
	w = screen.availWidth;
	h = screen.availHeight;
	popW = 420;
	popH = 330;
	leftPos = (w-popW)/2;
	topPos = (h-popH)/2;

	window.open( rootdir + 'index.php?j=help_frm.php&mod=help&target='+section,'help','width=' + popW + ',height=' + popH + ',top=' + topPos + ',left=' + leftPos);

}

function openImageGrid(code) {
	w = 800, h = 600;
	w = screen.availWidth;
	h = screen.availHeight;
	
	popW = 300;
	popH = 480;
	
	leftPos = (w-popW)/2;
	topPos = ((h-popH)/2) * 0.75;
	window.open( rootdir + 'index.php?j=iteminfo.php&mod=shop&p=' + code + '&t=imageGrid.htm','imageGrid','width=' + popW + ',height=' + popH + ',top=' + topPos + ',left=' + leftPos + ',scrollbars=yes');
}

function toggleBrandsDHTML() {
	if (document.getElementById("brandPopup")) {
		el = document.getElementById("brandPopup");
	if (el.style.display == 'none')
	{
		el.style.display = 'block';
	}
	else {
		el.style.display = 'none';
	}
	}
}
