// JavaScript Document

var objW;

function winopen( aPath, aWidth, aHeight ) {
	if((typeof(objW)=='object') && !objW.closed) {
		objW.close();
	}	
	objW = window.open('', 'SDNdetailwin', 'width=' + aWidth + ',height=' + aHeight );
	strName = aPath.substr(aPath.lastIndexOf("/") + 1);
	objW.document.write ('<title>' + strName + '</title>');
	objW.document.write ('<body leftmargin="0" topmargin="0" marginwidth="0" marginheight="0">');
	objW.document.write ('<img src="'+ aPath +'" width="' + aWidth + '" height="' + aHeight + '" border="0" alt="">');
	objW.document.write ('</body>');
}
