function viewImg(pageName){
      var xstr = 'scrollbars=no,toolbar=no,status=no,menubar=no,directories=no,location=no,resizable=yes,width=450,height=400';
      var prodWindow = window.open(pageName, 'window', xstr);
      if (prodWindow) prodWindow.focus();
}

function windowOpen(pageName){
	var width = window.screen.width;
	var height = window.screen.height;
	var xstr = 'scrollbars=yes,toolbar=no,status=no,menubar=no,directories=no,location=no,resizable=yes, left=0, top=0, width='+width+',height='+height;
    var prodWindow = window.open(pageName, 'window', xstr);
    if (prodWindow) prodWindow.focus();
}

function backToSite(){
	var prodWindow = window.opener;
	if (prodWindow){
		prodWindow.focus();
		window.close();
	}
}

function editStyleColor(e, color){
	if(color){
		e.style.color='#000000';
	}
	else{
		e.style.color='#45338E';	
	}
}

function editWindowSize(width, height){
    window.resizeTo(width+50, height+150);
}
