// JavaScript Document

function openWindow( url, target, width, height ) {

	window.open( url, target, "width=" + width + "," + "height=" + height + ",menubar=1,resizable=1" );

}


function openWindowT002( url, target, width, height ) {

	window.open( url, target, "width=" + width + "," + "height=" + height + ",menubar=0,resizable=1,scrollbars=yes" );

}