//<!--
function OpenWindow( url, width, height, options, name ) {
	if ( ! width ) width = 340;
	if ( ! height ) height = 450;
	if ( ! options ) options = "scrollbars=no,menubar=no,toolbar=no,location=no,status=no,resizable=no,left=100,top=100";
	if ( ! name ) name = "outsideSiteWindow";
	var newWin = window.open( url, name, "width=" + width + ",height=" + height + "," + options );
}
//-->
