function openmedia(lnk) {
    open(lnk,'wmmedia','resizable=no,width=320,height=320');
}

function openwin(url,w,h,sb) {
	var bName = navigator.appName;

	if (bName == "Netscape") id='ns';
	else id='ie';
	
	if (bName == "Netscape") h=h+5;
	if (parseInt(navigator.appVersion) >= 4) {
		x = (screen.width - w) / 2;
		y = (screen.height - h) / 2;
	} else {
		x = 150;
		y = 200;
	}

	window.open(url, '_blank', 'height=' + h + ',width=' + w + ',scrollbars=' + sb + ',resizable=0,menubar=0,toolbar=0,status=0,location=0,directories=0,left=' + x + ',top=' + y);

}

function imgPopup(imgName) {
	imgURL=imgName;
	i1 = new Image;
	i1.src = imgURL;
	html = '<HTML><HEAD><TITLE>Ace Dragon Tattoo</TITLE></HEAD><BODY LEFTMARGIN=0 MARGINWIDTH=0 TOPMARGIN=0 MARGINHEIGHT=0><CENTER><IMG SRC="'+imgURL+'" BORDER=0 NAME=imgTest onLoad="window.resizeTo(document.imgTest.width+14,document.imgTest.height+32)"></CENTER></BODY></HTML>';
	popupImage = window.open('','_blank','toolbar=0,location=0,directories=0,menuBar=0,scrollbars=0,resizable=0');
	popupImage.document.open();
	popupImage.document.write(html);
	popupImage.document.close();
}