function openWindow(url){window.open(url,'popup','resizable = 1, scrollbars = 1, top = 100, left = 100, width = 600, height = 600');}
function hideDiv(id){document.getElementById(id).style.visibility='hidden';}
function copyBilling(){document.getElementById('shipping_address').value=document.getElementById('billing_address').value;document.getElementById('shipping_city').value=document.getElementById('billing_city').value;document.getElementById('shipping_province').value=document.getElementById('billing_province').value;document.getElementById('shipping_postal').value=document.getElementById('billing_postal').value;document.getElementById('shipping_country').value=document.getElementById('billing_country').value;};function copyShipping(){document.getElementById('billing_address').value=document.getElementById('shipping_address').value;document.getElementById('billing_city').value=document.getElementById('shipping_city').value;document.getElementById('billing_province').value=document.getElementById('shipping_province').value;document.getElementById('billing_postal').value=document.getElementById('shipping_postal').value;document.getElementById('billing_country').value=document.getElementById('shipping_country').value;};function copyEmail(){document.getElementById('billing_email_address').value=document.getElementById('email_address').value;};function getMarkup(){var price
var cost
price=Number(document.getElementById('price').value)
cost=Number(document.getElementById('cost').value)
markup=Number(((price-cost)/cost)*100)
document.getElementById('markup').value=markup}
function getPrice(){var cost
var markup
var price
cost=Number(document.getElementById('cost').value)
markup=Number(document.getElementById('markup').value)
price=Number(cost+(cost*markup/100))
document.getElementById('price').value=price}
function cleanNumber(obj){obj.value=obj.value.replace(/[^0-9]+/g,'')};function formatNumber(obj){obj.value=obj.value.replace(/(\d{3})(\d{3})/,'('+'$1'+') '+'$2'+'-')};function copyText(content){window.clipboardData.setData('Text',content);}
function randomString(){var chars="0123456789ABCDEFGHIJKLMNOPQRSTUVWXTZabcdefghiklmnopqrstuvwxyz";var string_length=5;var randomstring='';for(var i=0;i<string_length;i++){var rnum=Math.floor(Math.random()*chars.length);randomstring+=chars.substring(rnum,rnum+1);}
document.getElementById('account_password').value=randomstring;}
function setHomePrimary(){document.getElementById('primary_number').value=document.getElementById('home_number').value;document.getElementById('primary_home').checked=true;};function setWorkPrimary(){document.getElementById('primary_number').value=document.getElementById('work_number').value;document.getElementById('primary_work').checked=true;};function setMobilePrimary(){document.getElementById('primary_number').value=document.getElementById('mobile_number').value;document.getElementById('primary_mobile').checked=true;};function toggle(id){var ele=document.getElementById(id);if(ele.style.display=="block"){ele.style.display="none";}
else{ele.style.display="block";}}