function newWin(name, id)
{ 

	if (name == "popup")
	    { newWindow = window.open( "/blogs/index.php?type=1&id=" + id + "", "popup", "scrollbars=1, status=0, location=0, menubar=0, resizable=1, width=640, height=480, top=10, left=20" );
	}

	if (name == "popup2")
	    { newWindow = window.open( "/blogs/index.php?type=2&id=" + id + "", "popup2", "scrollbars=1, status=0, location=0, menubar=0, resizable=1, width=640, height=480, top=10, left=20" );
	}

}

