<!--Earthdoggy Custom Pop Window v1-->	
	function OpenImageWindow(url,id,width,height) {
		var rand_name = 'image_'+id;
		width = (width  - 0) + 20;
		height = (height  - 0) + 20;
		newWindow = window.open(url, rand_name,"toolbar=0,location=0,directories=0,status=0,menubar=0,scrollbars=0, resizable=0,width="+width+",height="+height,'true');
		newWindow.window.focus();
	}
	function OpenWindow(url, id) {
		var rand_name = 'image_'+id;
		window.open(url, rand_name);
	}
