var subwindow;function popupwin(aDocument){	if (!subwindow || subwindow.closed)	{ 		subwindow = window.open(aDocument,"subwindow","width=476,height=910,resizable,scrollbars=yes");	} else {		subwindow.document.location.href = aDocument;		subwindow.focus();	}}function showDetail(recID){	elementName = 'Detail_'+recID; 	Element.toggle(elementName);}
