//===== COWBELL Co. official web site ======================   `_` =====
//      C O W B E L L   c a f f e                              t
//      [!]Unauthorized copying of all contents prohibited.   K K  R
//========= (C)2001-2003 COWBELL Co. All rights reserved. == (d )m =====
// any problems?  ok, please contact us... mailto:info@cowbell.jp
//
// JavaScript - [function] open a small window - "chinatour"
// written by MORIKAWA Tetsushi - feb 23, 2002


function OpenReportWindow(number) {

	myURL = 'http://www.cowbell.jp/cgi-bin/chinatour_window.cgi?id='+number;

	var Browser = navigator.appName;
	vers = parseInt(navigator.appVersion.substring(0, 1));
	if((navigator.appVersion.indexOf("Mac") != -1)
	&&Browser == "Microsoft Internet Explorer"){

		window.open(myURL,'myWindow','scrollbars=no,resizable=yes,width=380,height=450');

		} else {

		window.open(myURL,'myWindow','scrollbars=no,resizable=yes,width=380,height=450');

	}

}

