// JavaScript Document

function showProduct(productName){
    var productName = document.getElementById('productType').value;
	
    switch(productName){
	case 'Serums':
  	    window.location = "http://www.esheeesthetic.com/products_serums.php";
  	    break;
	case 'Creams':
	    window.location = "http://www.esheeesthetic.com/products_creams.php";
  	    break;
	case 'Masks':
  	    window.location = "http://www.esheeesthetic.com/products_masks.php";
  	    break;
	default:
  	    window.location = "http://www.esheeesthetic.com/products.php";
	    break;
    }
}



function checkForRemove(sku, percent, discount){
	
	if ( percent > 0 || discount > 0 ){
		location.href = "/admin/coupon_process.php?sku=" + sku + "&action=remove";
	} else {
		alert('Please select product with existing coupon');	
	}
}



function checkForEdit(sku, startDate, endDate, percent, discount){
	
	if ( percent > 0 || discount > 0 ){
		location.href = "/admin/coupon_edit.php?sku=" + sku + "&start_date=" + startDate + "&end_date=" + endDate + "&percent=" + percent + "&discount=" + discount + " &action=edit";
	} else {
		alert('Please select product with existing coupon');	
	}
}



function checkForAdd(sku, percent, discount){
	
	if ( percent > 0 || discount > 0 ){
		alert('Please select product without coupon');	
	} else {
		location.href = "/admin/coupon_create.php?sku=" + sku;
	}
}

function randomImage(){
    var imlocation = "images/header/";

    var image = new Array();

    image[0] = 'top_slogan.png';
    image[1] = 'top_slogan1.png';
    image[2] = 'serums-collection.png';
    image[3] = 'eliminate-from-within.png';
    image[4] = 'fgf1.png';
    image[5] = 'fight-natuarally.png';
    image[6] = 'heal-inside-out.png';
    image[7] = 'secret-revealed.png';
    image[8] = 'serum-collection.png';

    var whichImage = Math.round(Math.random()*(image.length-1));

    document.getElementById('mainBanner_titleImage').innerHTML = "<img src='" + imlocation + image[whichImage]+ "'>";
}

function openSystem(systemId){
    switch(systemId)
    {
        case 1234:
          window.location='/serum-cellular-repair-gene-therapy.html';
          break;
        case 1235:
          window.location='/serum-intensive-brightening.html';
          break;
        case 1236:
          window.location='/serum-hydra-gold.html';
          break;
        case 1237:
          window.location='/serum-vitalizing-c.html';
          break;
        case 1238:
          window.location='/bota-therapy-concentrate-serum.html';
          break;
        case 1239:
          window.location='/silky-rose-essence-serum.html';
          break;
        case 1249:
          window.location='/KI-therapy-serum-elixir-of-life.html';
          break;
       
        case 1240:
          window.location='white-truffle-radiance-cream.html';
          break;
        case 1241:
          window.location='cellular-repairing-night-cream-gene-therapy.html';
          break;
        case 1242:
          window.location='aqua-radiance-hydro-mask.html';
          break;
       
        case 1243:
          window.location='skin-care-system/love-your-skin.html';
          break;
        case 1244:
          window.location='skin-care-system/glow-and-brightening.html';
          break;
        case 1245:
          window.location='skin-care-system/dynamic-wrinkle-control.html';
          break;
        case 1246:
          window.location='skin-care-system/ultimate-anti-wrinkle.html';
          break;
        case 1247:
          window.location='skin-care-system/you-glowing-irresistable.html';
          break;
        default:
          window.location='/complete-skin-care-systems.html';
    }
}

 
 
 
 
 
