/*JavaScript: rent.jslast updated on 2009.11.21(c) 2009 YOSUKE INUI Design Office (http://www.inuiyosuke.jp/)*/function ONW () {	var ONW_obj;//	var target = (arguments[1] && arguments[0].match(/.*\/([\w]+)(\.[\w]*)?\/?$/)) ? RegExp.$1 : '_blank';	var target = (arguments[0].match(/.*\/([\w]+)(\.[\w]*)?\/?(\?.*)?$/)) ? RegExp.$1 : '_blank';	var tmp = new Array(arguments[1],arguments[2],arguments[3],arguments[4]);	if (isNaN(tmp[0])) { tmp[0] = screen.availHeight; tmp[1] =  800; }	tmp[0] = (isNaN(tmp[0]) || tmp[3] > 0) ? screen.availHeight : (tmp[0] < 100) ? screen.availHeight : tmp[0];	tmp[1] = (isNaN(tmp[1]) || tmp[3] > 0) ? screen.availWidth : (tmp[1] < 100) ? screen.availWidth : tmp[1];	tmp[2] = (tmp[2] > 0) ? 'no' : 'yes';	tmp[3] = (tmp[3] > 0) ? 'yes' : 'no';	tmp[4] = (tmp[0] < 700) ? 30 : 0;	tmp[5] = (tmp[1] < 700) ? 30 : 0;	var Feature = (target == '_blank') ? '' : 'height='+tmp[0]+',width='+tmp[1]+',top='+tmp[4]+',left='+tmp[5]+',fullscreen='+tmp[3]+',resizable=yes,toolbar=no,directories=no,location='+tmp[2]+',scrollbars=yes,menubar=no,status='+tmp[2];	ONW_obj = window.open(arguments[0],target,Feature); if (ONW_obj) { ONW_obj.focus(); } return false;}