﻿/* from http://www.yourhtmlsource.com/javascript/popupwindows.html */
var newwindow;
function poptastic(url)
{
	newwindow=window.open(url,'picspop','height=600,width=800');
	if (window.focus) {newwindow.focus()}
}

