
/** 
 * ポップアップ（Clap）
 * 
 */
function clap_open(elm)
{
	var clwin;
	
	if (elm.nodeName == 'A') {
		clwin = window.open(
			elm.href,
			'_blank', 
			'width=340,height=400,scrollbars=yes,resizable=yes,location=yes'
		);
		
		if (clwin != null) {
			clwin.focus();
		}
	
	} else if (elm.nodeName == 'FORM') {
		
		var td = new Date(), targ = 'mblg_clap_'+(td.getTime());
		
		clwin = window.open(
			'about:blank', 
			targ,
			'width=340,height=400,scrollbars=yes,resizable=yes,location=yes'
		);
		
		if (clwin != null) {
			elm.target = targ;
			elm.submit();
			clwin.focus();
		}
	}
	
	return false;
}
