
function showInfo(productno) {
	showModalDialog('/products/' + productno + '/?simple=1','','dialogHeight: 860px; dialogWidth: 720px; edge: Raised; center: Yes; help: No; resizable: Yes; status: No;');
}

function showZoom(url) {
	showModalDialog(url,'','dialogHeight: 500px; dialogWidth: 450px; edge: Raised; center: Yes; help: No; resizable: Yes; status: No;');
}

function showEmail() {
	showModalDialog('/share/?close=1&no=' + document.body.pno,'','dialogHeight: 440px; dialogWidth: 550px; edge: Raised; center: Yes; help: No; resizable: Yes; status: No;');
}

function showMovie(movieurl) {
	showModalDialog('/showmovie.asp?url='+movieurl,'','dialogHeight: 400px; dialogWidth: 400px;center:1;dialogHide:1;edge:sunken;help:0;resizable:0;scroll:0;status:0;unadorned:0;');
}

function showchild (childindex) {
	var obj;
	try {
		obj = event.srcElement.parentNode;
	} catch(obj) { return; }
	
	if (! (0 <= childindex && childindex < obj.children.length)) { childindex = 0; }
	var i;
	for (i = 0; i < obj.children.length; i ++) {
		if (i == childindex) {
			obj.children[i].style.display = 'inline';
		} else {
			obj.children[i].style.display = 'none';
		}
	}
}