
function MM_jumpMenu(targ,selObj,restore){ //v3.0
  eval(targ+".location='"+selObj.options[selObj.selectedIndex].value+"'");
  if (restore) selObj.selectedIndex=0;
}
/// exit page redirect ///
function gotoUrl(redUrl) {
   //alert(redUrl);
   sTargetURL = redUrl;
   doRedirect();
   /*(8alert(redUrl);*/
}
function doRedirect(){
    setTimeout( "timedRedirect()", 10*1000 );
}
function timedRedirect(){
    window.location.href = sTargetURL;
}
function timedRedirect()
{
    window.location.replace( sTargetURL );
} 
/// exit page redirect ///

/// radio btn ///
function toggle_radio(checkbox_id) {
		if(document.getElementById(checkbox_id).checked == true) {
			document.getElementById(checkbox_id).checked = false;
		} else {
			document.getElementById(checkbox_id).checked = true;
		}
	}
/// radio btn ///

/// preload images ///
function MM_preloadImages() { //v3.0
  var d=document; if(d.images){ if(!d.MM_p) d.MM_p=new Array();
    var i,j=d.MM_p.length,a=MM_preloadImages.arguments; for(i=0; i<a.length; i++)
    if (a[i].indexOf("#")!=0){ d.MM_p[j]=new Image; d.MM_p[j++].src=a[i];}}
}
/// preload images ///
/// nospam ///
function nospam (n, d){ // v1
		document.write ("<a href='mailto:"+n+"@"+d+"'>"+n+"@"+d+"</a>");
}
/// nospam ///

function bookForm(bookID){
document.write( '<form action="http://bestseller.gr/main.php?book_id='+bookID+'&ccsForm=add_to_cart" method="post" name="add_to_cart" target="bestseller"> <input name="quantity" type="hidden" value="1"> <input name="Button_Insert" type="submit" value="Αγορά" style="FONT-WEIGHT: bold; fFONT-SIZE: 10px; BACKGROUND: #7f2797;  COLOR: #ffffff; FONT-FAMILY: Verdana; cursor: hand;"> <input type="hidden" name="shopping_cart_id" value=""> <input type="hidden" name="product_id" value="'+bookID+'"> <input type="hidden" name="refferer" value="1"> από το <b>bestseller.gr</b>.</form>');
}

/***********************************************
* Local Time script- © Dynamic Drive (http://www.dynamicdrive.com)
* This notice MUST stay intact for legal use
* Visit http://www.dynamicdrive.com/ for this script and 100s more.
***********************************************/

var weekdaystxt=["Sun", "Mon", "Tues", "Wed", "Thurs", "Fri", "Sat"]

function showLocalTime(container, servermode, offsetMinutes, displayversion){
if (!document.getElementById || !document.getElementById(container)) return
this.container=document.getElementById(container)
this.displayversion=displayversion
var servertimestring=(servermode=="server-php")? '<? print date("F d, Y H:i:s", time())?>' : (servermode=="server-ssi")? '<!--#config timefmt="%B %d, %Y %H:%M:%S"--><!--#echo var="DATE_LOCAL" -->' : '<%= Now() %>'
this.localtime=this.serverdate=new Date(servertimestring)
this.localtime.setTime(this.serverdate.getTime()+offsetMinutes*60*1000) //add user offset to server time
this.updateTime()
this.updateContainer()
}

showLocalTime.prototype.updateTime=function(){
var thisobj=this
this.localtime.setSeconds(this.localtime.getSeconds()+1)
setTimeout(function(){thisobj.updateTime()}, 1000) //update time every second
}

showLocalTime.prototype.updateContainer=function(){
var thisobj=this
if (this.displayversion=="long")
this.container.innerHTML=this.localtime.toLocaleString()
else{
var hour=this.localtime.getHours()
var minutes=this.localtime.getMinutes()
var seconds=this.localtime.getSeconds()
var ampm=(hour>=12)? "PM" : "AM"
var dayofweek=weekdaystxt[this.localtime.getDay()]
this.container.innerHTML=formatField(hour, 1)+":"+formatField(minutes)+":"+formatField(seconds)+" "+ampm+" ("+dayofweek+")"
}
setTimeout(function(){thisobj.updateContainer()}, 1000) //update container every second
}

function formatField(num, isHour){
if (typeof isHour!="undefined"){ //if this is the hour field
var hour=(num>12)? num-12 : num
return (hour==0)? 12 : hour
}
return (num<=9)? "0"+num : num//if this is minute or sec field
}