//===== 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] recommend one's friend this page
// written by MORIKAWA Tetsushi - aug 8, 2001


function OpenSendmailWindow() {

	myURL = window.location.href;

	myURL = myURL.replace('#', '%23');
	myURL = myURL.replace('&', '%26');
	myURL = myURL.replace('=', '%3D');
	myURL = myURL.replace('?', '%3F');

	myReferer = 'http://www.cowbell.jp/cgi-bin/recommend_open.cgi?url=' + myURL;

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

		window.open(myReferer,'mailform','scrollbars=yes,resizable=yes,width=350,height=560');

		} else {

		window.open(myReferer,'mailform','scrollbars=yes,resizable=yes,width=350,height=560');

	}

}
