//javascript for indiesTop10




function openWindow(url) {
	popupWin = window.open(url, 'other_page', 'width=420,height=500,scrollbars=yes,left=0,top=100,screenX=0,screenY=100')
}

function openWindowWide(url) {
	popupWin = window.open(url, 'other_page', 'width=1050,height=800,toolbar=yes,scrollbars=yes,menubar=yes,location=yes,left=0,top=100,screenX=0,screenY=100')
}

function openPlayer(url) {
	popupWin = window.open(url, 'new_page', 'width=400,height=200,toolbar=no,scrollbars=no,menubar=no,location=no,left=100,top=100,screenX=0,screenY=100')
}

function openPlayerNew(url) {
	popupWin = window.open(url, 'new_page', 'width=552,height=350,toolbar=no,scrollbars=no,menubar=no,location=no,left=100,top=100,screenX=0,screenY=100')
}

function switchPlaylist(){
  if(document.getElementById('playlist').style.display == 'none'){
	document.getElementById('playlist').style.display = 'block'
  }else{
        document.getElementById('playlist').style.display = 'none'
  }
}

// Google Internal Site Search script- By JavaScriptKit.com (http://www.javascriptkit.com)
// For this and over 400+ free scripts, visit JavaScript Kit- http://www.javascriptkit.com/
// This notice must stay intact for use

//Enter domain of site to search.
var domainroot="www.indiestop10.com"

function Gsitesearch(curobj){
curobj.q.value="site:"+domainroot+" "+curobj.qfront.value
}


