var dayarray=new Array("Sunday","Monday","Tuesday","Wednesday","Thursday","Friday","Saturday")
var montharray=new Array("January","February","March","April","May","June","July","August","September","October","November","December")

function getthedate(){
var mydate=new Date()
var year=mydate.getYear()
if (year < 1000)
year+=1900
var day=mydate.getDay()
var month=mydate.getMonth()
var daym=mydate.getDate()
if (daym<10)
daym="0"+daym
//change font size here
var cdate=dayarray[day]+", "+montharray[month]+" "+daym+", "+year;
document.write(cdate)
};

Opera = navigator.userAgent.indexOf("Opera") > -1;
function bookmark(){
	if(Opera){
		alert("Press Ctrl+T to bookmark this site!")
	}else if (window.sidebar){
		window.sidebar.addPanel('PakShak.com - ' + document.title, window.location, "")
	}else{
		window.external.AddFavorite(window.location, 'PakShak.com - ' + document.title);
	}
}
var popUpWin=0;
function popUpWindow(URLStr, width, height)
{
  if(popUpWin)
  {
    if(!popUpWin.closed) popUpWin.close();
  }
  popUpWin = open(URLStr, 'popUpWin', 'scrollbars=no,resizable=no,width='+width+',height='+height+',left=0, top=0');
}
