var myURL1 = 'http://www.defloration.tv'
var myURL2 = 'http://defloration.tv'
var ref1 = document.referrer

function back2Index() {
if ((ref1.indexOf(myURL1)==0) || (ref1.indexOf(myURL2)==0)) {
	history.go(-1)
	} else {
	location.href = myURL1
	}
}

function CloseWin()
{
		if (history.length <= 1)
	{
		window.close()
	} else
	{
		if ((ref1.indexOf(myURL1)==0) || (ref1.indexOf(myURL2)==0)) {
		history.go(-1)
		} else {
		location.href = myURL1
		}
	}	
}
