//Javascript
//Christian Michael Schmidt 

//Opening links in an extern window.

function extUrl(link)
{
	newWindow = window.open(link, "Link Popup", "width=1024,height=768,scrollbars=yes");
	newWindow.focus();	
}

function extUrl2(link)
{
	newWindow = window.open(link, "Link Popup", "width=1200,height=768,scrollbars=yes");
	newWindow.focus();	
}

function extUrl3(link)
{
	newWindow = window.open(link, "Link Popup", "width=550,height=550,scrollbars=yes");
	newWindow.focus();	
}
