/* Main javascript file for ScoopAway.com */

function subwindow(url, width, height) {
    var scrollbar=1;
    var resizable=1;
    popup = window.open(url, "subwin", "scrollbars="+scrollbar+",resizable="+resizable+",status=0,location=0,width="+width+",height="+height);
    popup.focus();
}

function popup_legal()
{
	subwindow("/terms.php", 485, 585);
}

function popup_privacy()
{
	subwindow("http://www.clorox.com/global_privacy.php?referer=http://www.scoopaway.com", 485, 585);
}

function popup_printVetLog(vetLogID)
{
	subwindow("/my_organizer/vet_log/printer_friendly.php?log_id="+vetLogID, 670, 585);
}

function popup_printVetLogEntry(vetLogID, vetLogEntryID)
{
	subwindow("/my_organizer/vet_log/printer_friendly.php?log_id="+vetLogID+"&log_entry_id="+vetLogEntryID, 670, 585);
}

function popup_termsOfUse()
{
	subwindow("/forum/featured_topic/forms/terms_of_use.php", 670, 565);
}