﻿<?xml version="1.0" encoding="utf-8"?>
<xsl:stylesheet version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform"
    xmlns:msxsl="urn:schemas-microsoft-com:xslt" exclude-result-prefixes="msxsl">
    <xsl:output method="xml" indent="yes"/>

    <xsl:template match="/">
        <xsl:variable name="WorkoutItemID" select="AjaxRequest/Params/WorkoutItemID"></xsl:variable>
        <xsl:variable name="WorkoutExerciseID" select="AjaxRequest/Params/WorkoutExerciseID"></xsl:variable>
        <xsl:variable name="PortalItemID" select="AjaxRequest/Params/PortalItemID"></xsl:variable>
        <xsl:variable name="AccountID" select="AjaxRequest/Params/AccountID"></xsl:variable>
        
        
        <div id="show_timer_div" style="font-size:30px;" align="center" class="brandTitle marginBottom20 marginTop10">00 : 00</div>

        <div width="20px">
            <div id="div_Start" class="onMouseOver divBrowseGradientStopWatch labelGoalTitle" 
                 style="float:left;width:100px;height:30px;margin-left:50px;font-size:20px;line-height:30px;"
                 onClick="startStopTimer('{$WorkoutItemID}','{$WorkoutExerciseID}','{$PortalItemID}','{$AccountID}');">START</div>

            <div id="div_Reset" class="onMouseOver divBrowseGradientStopWatch labelGoalTitle" 
                 style="width:100px;height:30px;margin-left:110px;font-size:20px;line-height:30px;"
                 onClick="resetTimer();">RESET</div>


       
        </div>

    </xsl:template>
</xsl:stylesheet>
