// JavaScript Document

function winOpen(tgt, url) {
	if( !url ) {
		url = tgt.href;
	}
	window.open(url, 'subWindow', 'width=640,scrollbars=yes,resizable=yes,menubar=yes');
}