// Analog Clock - Parameters Head Script
// You may change the parameters here to set up your clock
// refer to http://javascript.about.com/library/blclockm1.htm
// for a description of the parameters
var clocksize=50;
var colnumbers='000099';
var colseconds='ff0000';
var colminutes='000000';
var colhours='000000';
var numstyle = 0;
var font_family = 'helvetica,arial,sans-serif';
var localZone = 0;
var mytimezone = 0;
var Constantatimezone = 2;
var Rotterdamtimezone = 1;
var Shanghaitimezone = 8;
var PortSaidtimezone = 2;
var dst1 = 0;
var dst0 = 0;
var city = '';
var country = '';
var fix = 1;
var xpos=15;
var ypos=15;
// code to adjust for daylight saving time if applicable (localzone = 0)

// code to handle clock positioning (fix = 0)

new clock('a',clocksize, colnumbers,colseconds,colminutes, colhours,numstyle,font_family, localZone,Constantatimezone,dst1,city, country,fix,xpos,ypos);
new clock('b',clocksize, colnumbers,colseconds,colminutes, colhours,numstyle,font_family, localZone,Rotterdamtimezone,dst1,city, country,fix,xpos,ypos);
new clock('c',clocksize, colnumbers,colseconds,colminutes, colhours,numstyle,font_family, localZone,Shanghaitimezone,dst0,city, country,fix,xpos,ypos);
new clock('d',clocksize, colnumbers,colseconds,colminutes, colhours,numstyle,font_family, localZone,PortSaidtimezone,dst0,city, country,fix,xpos,ypos);

