// JavaScript Document by Heyday

 function openDetails(val1,val2) 
{
 sWidth = screen.availWidth;
	sHeight = screen.availHeight;
	winWidth = 550;
	winHeight = 600;
	sLeft = (sWidth - winWidth) / 2;
	sTop = (sHeight - winHeight) / 2;
	url = "detailwindow.php?tname=" + val1 + "&serialno=" + val2;
	window.open(url,"Details", "width=" + winWidth + ",height=" + winHeight + ",top=" + sTop + ",left=" + sLeft + ",toolbar=0,menubar=0,status=0,scrollbars=1,location=0,resizable=0");
	
return;
}


