/* design and programming by vashkevich.com */
function popup_win(page, w, h, s, t, l)
{
	if ((!w || w=="") && w!=0)
	{
		w = 650;
	}
	if ((!h || h=="") && h!=0)
	{
		h = 550;
	}
	if ((!s || s=="") && s!=0)
	{
		s = 1;
	}
	if ((!t || t=="") && t!=0)
	{
		t = 20;
	}	
	if ((!l || l=="") && l!=0)
	{
		l = 10;
	}
	name = page;
	for(i=0; i<name.length; i++)
	{
		name = name.replace(/[\.\,\;\:\@\#\$\%\^\&\*\(\)\-\+\&\?\=\/\\]/,"_");
	}
	window.open(page, "popup_" + name, "scrollbars=" + s + ", width=" + w + ",height=" + h + ",noresize,top=" + t + ",left=" + l + "");
}

/* design and programming by vashkevich.com */