var newwindow;
function details_window(url)
{
	newwindow=window.open(url,'name','height=500,width=450,left=100,top=100,resizable=yes');
	if (window.focus) {newwindow.focus()}
}
