// JavaScript Documennt
function over(id,str)
{	
		document.getElementById(id).src=str;
}
function out(id,str)
{
	document.getElementById(id).src=str;
}

function previewImage(name,width,height)
{
//var source;
pid=document.getElementById(name).src;
//width = document.getElementById(name).width;
//width+=10;
//height = document.getElementById(name).height;
//height+=30;
//height='+height+',width='+width+',
window.open("view_image_full.php?pid="+pid,"","toolbar=0,status=0,menubar=0,scrollbars=0,resizable=0,width="+width+", height="+height+", top=5,left=5");

//settings='height='+height+',width='+width+',scrollbars=yes,toolbar=no,location=no,status=no,menubar=no,resizable=no,dependent=yes';
//var newwin=open(source,'_blank',settings);
}
