


function ImagePop( name, image_url, image_width, image_height )
{
	var currentTime = new Date()
	var month = currentTime.getMonth() + 1
	var day = currentTime.getDate()
	var year = currentTime.getFullYear()
	var hours = currentTime.getHours()
	var minutes = currentTime.getMinutes()
	var seconds = currentTime.getSeconds()	
	var milliseconds = currentTime.getMilliseconds()		
	
	my_window= window.open ("", name+year+month+day+hours+minutes+seconds+milliseconds,'toolbar=0,menubar=0,width='+image_width+',height='+image_height+',resizable=1,scrollbars=1,status=0');
	my_window.document.write('<html><head><title>Image</title></head><body background="borders/bg_color.gif"><table width=100% height=100% align=center border=0 cellspacing=0 cellpadding=0><tr><td align=center><img src="'+image_url+'"></td></tr></table></body></html>');
	my_window.document.close();
}

