// JavaScript Document

function openwin(url) {
window.open(url,"TempWindow","width=300,height=210,resizable=yes,status=yes")
}

function to_old_win(url)
{
	opener.location.href = url;
}