//===== COWBELL Corporation 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 Corporation All rights reserved.(d )m =====
// any problems?  ok, please contact us... mailto:info@cowbell.jp
//
// JavaScript - [function] open a small window - "cotton"
// written by MORIKAWA Tetsushi - apr 4, 2003


function OpenReportWindow(number) {

	myURL = 'http://www.cowbell.jp/cgi-bin/cotton_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');

	}

}

