function checkd() 
{
    var obj=document.getElementsByName("sc");
    var cl =obj.length;
    var sc ="";
    for(var ii=0;ii<cl;ii++){
        if(obj[ii].checked)sc=sc+obj[ii].value+", ";
    }
	document.toursearchpanelform.Left1$volcity.value=sc;
}




document.write ('<script language="javascript" type="text/javascript" src="/js/jquery.boxy.js"></script>');

var allDialogs = [];
var seq = 0;
var bottomclose = '<div class="boxy_bottom"><a onclick="Boxy.get(this).hide(); return false" class="close">CLOSE X</a></div>';


function iframe(url,w,h)
{
	return '<iframe id="Dialog-iframe" frameborder="0" src="'+url+'" style="width: '+w+'px; height: '+h+'px;" ></iframe>';
}


function CreateBoxy(tit,cnt,options)
{
	options = $.extend({title: tit}, options || {});
	var dialog = new Boxy(cnt, options);
	allDialogs.push(dialog);
	return false;
}



function ShowIFrame(title,url,w,h,closeplace)
{
	var options;
	var cnt = iframe(url,w,h);
	 if(closeplace=='bottom')
	{
		options = {fixed: false,modal: true,closeable: false}
		cnt = cnt + bottomclose;
	}
	return CreateBoxy(title,cnt,options);
}

