// This is the implementation of SimpleSwap
// by Jehiah Czebotar
// Version 1.1 - June 10, 2005
// Distributed under Creative Commons
//
// Include this script on your page
// then make image rollovers simple like:
// <img src="/images/ss_img.png" oversrc="/images/ss_img_over.png">
//
// http://jehiah.com/archive/simple-swap
// 

var newwindow;
function popup(url, height, width)
{
	newwindow=window.open(url,'name','height=430,width=840');
	if (window.focus) {newwindow.focus()}
}

