﻿/*  
Name: Template Functions
Theme URI: http://skin.pictofx.com
Description: Free themes and templates for the personal blogs.
Version: 2.0
Author: Ahmad Azimi - Vahid Zehtabi
Author URI: http://pictofx.com
*/
/*--------------------------------------------------------------------*/
document.write(cssStyle);
var errorBlogs = new Array("godforme", "vahshatestan");
/*--------------------------------------------------------------------*/
function getID(ID) {
	if(document.all){
		return document.all[ID]
	}else{
		return document.getElementById(ID)
	}
}
/*--------------------------------------------------------------------*/
function toggleShow (hide,show) {
	if(hide){
		getID(hide).style.display = "none";
	}
	if(show){
		getID(show).style.display = "block";
	}
}
/*--------------------------------------------------------------------*/
function addLoadEvent(func) {
	loadEvent = true;
  var oldonload = window.onload;
  if (typeof window.onload != 'function') {
    window.onload = func;
  } else {
    window.onload = function() {
      oldonload();
      func();
    }
  }
}
/*--------------------------------------------------------------------*/
function showData(trg, cont) {
	getID(trg).innerHTML = cont;
}
/*--------------------------------------------------------------------*/
function goToTDW(){
	window.location.href = "http://skin.pictofx.com/";
}
