
function forc(){

	theData   = "";
	theCookie = document.cookie+";";

	start = theCookie.indexOf('favorite_rent_bkns');

	if (start != -1)
	{
		end = theCookie.indexOf(";",start);
		theData = unescape(theCookie.substring(start + 'favorite_rent_bkns'.length,end));
	
	}
	alert(theData);
}

function imgexiste(value){
	document.search.img.checked = true;
	document.search.v.value = value;
	document.search.submit();
}
/*
$(function() {

	$("#dialog").css({display:'none'});

	$('#dialog').dialog({
			bgiframe: true,	// IE6対策
			draggable: false,
			resizable: false,
			autoOpen: false,
			width: 600,
			title: 'その他の条件を表示',
			modal: true
	});
	$('#moreSelectOpen').click(function(){
			$('#dialog').dialog('open');
	});
	$('#moreSelectClose').click(function(){
			$('#dialog').dialog('close');
	});
});
*/


     $(function() {  
       //$('#dialog').jqm();  
       $('#dialog').jqm({ modal: true });
       
     }); 

