function refreshImage(image)	{
	document.images[image.name+'_img'].src="/images/"+image.value;
}
initRTE("/rte/images/", "/rte/", "");

function openWindow(ref)	{
	window.open(ref,'','toolbar=no,bar=no,location=no,status=no,menubar=no,scrollbars=no,resizable=yes,width=600,height=500,top=100,left=200');
}

function updateImageFromPopUp(field,value)	{
	image=window.opener.document.getElementById(field);
	image.value=value;
	image.onchange();
}

function copyBilling()	{
	f=document.MyForm;
	f.Ship_LastName.value=f.Bill_LastName.value
	f.Ship_FirstName.value=f.Bill_FirstName.value
	f.Ship_CompanyName.value=f.Bill_CompanyName.value
	f.Ship_Address1.value=f.Bill_Address1.value
	f.Ship_Address2.value=f.Bill_Address2.value
	f.Ship_City.value=f.Bill_City.value
	f.Ship_State.value=f.Bill_State.value
	f.Ship_Zip.value=f.Bill_Zip.value
}

function updateAndSubmit()	{
	//alert("OK1");
	updateRTEs();
	//updateRTE('Content');
	//alert(document.RTEDemo.Content.value);
	//alert("OK2");
	return true;
}

function showHideAnswers() {
	s=document.StepItemForm.Type.value;
	if(s!="Text")	{
		document.all.Answers.style.display="";
	} else {
		document.all.Answers.style.display="none";
	}
}

function showDemo()	{
	window.open('/demo/','','toolbar=no,bar=no,location=no,status=no,menubar=no,scrollbars=no,resizable=no,width=600,height=500,top=10,left=10');
}
