// JavaScript Document
function openMain(w, h){
	
	var theWidth = w;
	var theHeight = h;
		
	var leftPos = (screen.width/2) - (theWidth/2);
	var topPos = (screen.height/2) - (theHeight/2);
	
	var Wextras = "'status=no, toolbar=no, width="+theWidth+", height="+theHeight+", top="+topPos+", left="+leftPos+"'";
			
	window.open("home.php?thePage=Home", "artmafia", Wextras);
}
function openImg(id) { 
		var id = id;
		window.open("gallery_view.php?id="+id,"test","width=20,height=20,resizable=no,scrollbars=no,status=0");
}

