var popupWindow = null;

function popup(url, width, height) {
	if (popupWindow != null) {
		if (!popupWindow.closed) {
			popupWindow.close();
		}
	}

	var top = 100;
	var left = ((screen.width-width)/2)-13;
	var options = "resizable=no,toolbar=no,location=no,scrollbars=yes,menubar=no,status=no,width="+width+",height="+height+",top="+top+",left="+left;

	popupWindow = window.open(url, "Popup", options);
	popupWindow.focus();
}
var CB_isOpen=false;
jQuery(function($){
  $('.imglight').attr('rel','clearbox');
  $('textarea[name=text]').click(function(){
    if($(this).val()=='Text') $(this).val('');
  });

  $('textarea[name=text]').focusout(function(){
    if($(this).val()=='') $(this).val('Text');
  });
var initCB = false;
  $('[rel=clearbox]').click(function(){
        if(CB_isOpen) {
            CB_Close();
            if (CB_isOpen==false) {
                CB_Init();
                CB_isOpen = true;
            }
            CB_Open('href='+this.href);
            CB_isOpen = true;
            return false;
        }
  });

});
//function //formular4(){  	alert("test");   }




