var colorPic = "";
function getColor (colorPic) {
   	if (document.PostcardForm.pickOne[0].checked) {
		document.PostcardForm.bgcolor.value = colorPic;
	}
   	if (document.PostcardForm.pickOne[1].checked) {
		document.PostcardForm.textcolor.value = colorPic;
	}
}

function OpenPreview() {
	//alert(document.PostcardForm.layout[1].checked);
	//alert(document.PostcardForm.path_target.value);
	if (document.PostcardForm.from_name.value=="" || document.PostcardForm.from_email.value=="" || document.PostcardForm.to_name.value=="" || document.PostcardForm.to_email.value=="" || document.PostcardForm.pesan.value==""|| document.PostcardForm.bgcolor.value==""|| document.PostcardForm.textcolor.value=="") {
		alert("Form eCard harap dilengkapi..!")
		return false
	} else {
		popupWin = window.open(''+document.PostcardForm.path_target.value+'/'+document.PostcardForm.from_name.value+'/'+document.PostcardForm.from_email.value+'/'+document.PostcardForm.to_name.value+'/'+document.PostcardForm.to_email.value+'/'+document.PostcardForm.image.value+'/'+document.PostcardForm.height.value+'/'+document.PostcardForm.width.value+'/'+document.PostcardForm.pesan.value+'/'+document.PostcardForm.bgcolor.value+'/'+document.PostcardForm.textcolor.value+'/'+document.PostcardForm.layout[0].checked+'/'+document.PostcardForm.layout[1].checked+'/'+document.PostcardForm.layout[2].checked+'', 'preview_page', 'resizable=1,status=0,toolbar=no,menubar=no,scrollbars=0,width=470,height=600')	
		return true
	}
}
