function platpopup(popurl){
    var winpops=window.open(popurl,"","width=440,height=440,scrollbars,resizable");
}
function smpopup(popurl){
    var winpops=window.open(popurl,"","width=440,height=340,scrollbars,resizable");
}
//xe currency convertor
function xeccwindow(price_usd) {
    XECurrencyWindow = window.open ('', 'XECurrencyWindow','toolbar=0,location=0,directories=0,status=0,menubar=0,scrollbars=0,resizable=1,height=200,width=620');
    XECurrencyWindow.focus();
    XECurrencyWindow.location.href = 'http://www.xe.com/pca/input.php?Amount='+price_usd+'&FromSelect=USD';
}