// JavaScript Document

/* POPUP MAILINGLISTA /*

/*
Form2Pop Script- By Peter Bailey (http://www.peterbailey.net)
Featured on JavaScriptKit.com
Visit http://www.javascriptkit.com for this script and more
*/

function createTarget(t){
window.open("", t, "width=300,height=300");
return true;
}


/* KALENDER */

$(function()
{
   
//  Developed by Roshan Bhattarai 
//  Visit http://roshanbh.com.np for this script and more.
//  This notice MUST stay intact for legal use

	//these two line adds the color to each different row
   $("#mytable tr:even").addClass("eventr");;
   $("#mytable tr:odd").addClass("oddtr");;
   //handle the mouseover , mouseout and click event
   $("#mytable tr").mouseover(function() {$(this).addClass("trover");}).mouseout(function() {$(this).removeClass("trover");}).click(function() {$(this).toggleClass("trclick");}); 
   });