function openDialog(fileName,width,height)
{
 var options = "dependent=yes,width="+width+",height="+height+",location=no,menubar=no,resizable=no,scrollbars=no,status=no,toolbar=no,innerwidth="+width+",innerheight="+height;
 dialogWindow = window.open(fileName,'Dialog',options);
 dialogWindow.focus();
}

function openFlexDialog(fileName,width,height)
{
 var options = "dependent=yes,width="+width+",height="+height+",location=no,menubar=yes,resizable=yes,scrollbars=yes,status=no,toolbar=no,innerwidth="+width+",innerheight="+height;
 dialogWindow = window.open(fileName,'Dialog',options);
 dialogWindow.focus();
}

function openPopup(fileName)
{
 var options = "dependent=yes,width=700,height=580,location=no,menubar=no,resizable=no,scrollbars=no,status=no,toolbar=no";
 dialogWindow = window.open(fileName,'Dialog',options);
 dialogWindow.focus();
}

function openWindow(fileName,windowTitle)
{
 var options = "";
 normalWindow = window.open(fileName,'Window',options);
 normalWindow.focus();
}

function confirmFormsend(message)
{
 if (confirm(message))
  return true;
 else
  return false;
}

/* SHOP */
function showForms(element) {
	if($(element).val()=='company') {
		showCompanyForm();
	} else {
		showPrivateForm();
	}
	$('#save').show();
}

function showCompanyForm() {
	hideForms();
	$('div#company1').show();
}

function showPrivateForm() {
	hideForms();
	$('div#private').show();
}

function hideForms() {
	$('div.form').hide();
}

function showShipping() {
	if($('#shipping').attr('checked')) {
		$('#company2').show();
	} else {
		$('#company2').hide();
	}
}