/* 
	Made by [Skizo] Mr. Apple
	Last updated 03-07-10-1755 
*/

function picview(pic, w, h, t, l) {
	/* usage picView(picturelocation, width, height, top, left) if variables (w,h,t,l) are left out the default definitions take over */
	if (!w)
		{w=790 		/* default width for the window if left out*/}
	if(!h)
		{h=540		/* default height for the window if left out*/}
	if(!t)
		{t=0		/* default top position for the window if left out*/}
	if(!l)
		{l=0		/* default left position for the window if left out*/}
	win = window.open(pic,'_blank','width='+w+',height='+h+',resizable=1,scrollbars=1,top='+t+',left='+l+'').focus();
}