/**
 * openwindow 0.01. - Simple window opening function
 * 
 * http://www.gigasightmedia.com
 *
 * http://www.stephenawhite.com
 *
 * Copyright (c) 2009 Stephen White (stephen.a.white@gmail.com)
 *
 * Released under the MIT License:
 * http://www.opensource.org/licenses/mit-license.php
 * 
 * >> Basically you can do anything you want but leave this header as is <<
 *
 * Version: 0.01 - 07/15/2009
 */ 
var newwindow;

function openwindow(url)

{
	newwindow=window.open(url,'screen','height=500,width=350,resizable=0,toolbar=0,menubar=0,location=0,status=0,directories=0,scrollbars=0,links=0');
	if (window.focus) {newwindow.focus()}
}

