function rollPic(strOffSrc, strOverSrc) {
	if (document.images) {
		this.off = new Image();
		this.over = new Image();
		this.off.src = strOffSrc;
		this.over.src = strOverSrc;
	}
}
function roll(strPic, strAction, strMsg) {
	if (document.images) {
		document.images[strPic].src = eval(strPic + '.' + strAction + '.src')
	}
	if (strMsg) {
		window.status = strMsg;
		return true;
	}
}
function swap(img, src) {
	if(document.images) {
		document.images[img].src = src;
	}
}
function openPopup(strTarget,strName,strOptions)
{
	var popupWin = window.open(strTarget,strName,strOptions);
	popupWin.focus();
}


function opensamos1popup()
{
	var popupWin1 = window.open('samos09.html','', 'height=450,width=450,scrollbars=no');
	popupWin1.focus();
}


function opensamos2popup()
{
	var popupWin2 = window.open('samos27.html','', 'height=400,width=450,scrollbars=no');
	popupWin2.focus();
}
