function show(src, id, w, h){
	var title;
	w2 = w + 70;
	h2 = h + 80;
	var detail = window.open("", "detail","width=" + w2 + ",height=" + h2 + ",dependent=yes,scrollbars=yes");
	detail.document.write("<body bgcolor='#000000'><center><br><img src='" + src + "'></center><br><br>");
	detail.document.title = document.title;
}

function showphp(id,w,h){
	var w2 = w + 80;
	var h2 = h + 100;
	var detail;


	if(detail != null){
		
		detail.location.href("http://crypt-net.com/imageview.php?id"+id+"");
		detail.resizeTo(w2,h2);
	}
	else{
		//console.print("window created\n");
		detail = window.open("http://crypt-net.com/imageview.php?id=" + id +"", "detail","width=" + w2 + ",height=" + h2 + ",dependent=yes,scrollbars=yes");
		detail.resizeTo(w2,h2);
	}
}

